Known bugs in NetBSD's ash or the Linux ports.
==============================================

Version 0.1

* The following code from trn 3.2's Pnews script gives a non-empty
  $moderator variable for all newsgroups (even the non-moderated ones).
  bash gives an empty $moderator for non-moderated groups.

  ---------------------------------------------------------------------------
		for newsgroup in $*; do
  # the following screwy sed should prevent Eunice from hanging on no match
		    moderator=`$sed <$lib/moderators \
		    -e "/^$newsgroup[ 	]/!s/.*//" \
		    -e "s/^$newsgroup[ 	]//"`
		    case ${moderator}X in
		    X)  tryinews=yes
			;;
		    *)
			$echo Mailing to moderator $moderator
  ---------------------------------------------------------------------------
