#!/bin/sh -

# Takes the "List of Moderators" posting (as found in news.lists) as standard
# input and sets moderation addresses of notes groups accordingly.
# 

cd __LIBDIR__
sed -e '1,/^:/d' -e '/^--/,$d' | __AWK__ '
{
	system("./nfdirect +v +pg:Other=nrw +m" $2 " " $1);
}
'
