#!/bin/sh

#NEWSGROUPS="pax.test"
NEWSGROUPS="alt.image.medical,comp.protocols.dicom,sci.data.formats,sci.med.informatics,sci.med.radiology"

INEWS="/usr/local/news/inews"
#INEWS="/flash-home/newslib/inews"
#INEWS="echo"

if [ -f plea ]
then
  $INEWS -h -d world -n $NEWSGROUPS plea
else
  echo "Error - file doesn't exist: plea"
  exit 1
fi

exit 0
