#!/bin/sh
##  $Revision: 1.10 $
##  Default control-message handler

. /usr/lib/news/lib/innshellvars

##  Set prog to null; that will leave the name of the message in $1
PROG=default
##  Some shells don't pass in $* unless we explicitly pass it in here.
. ${PATHBIN}/parsecontrol "$@"

case ${ACTION} in
mail)
    ${SM} ${ARTICLE} sed -e 's/^~/~~/' \
        | ${MAILCMD} -s "Unknown control message by ${FROM}" ${NEWSMASTER}
    ;;
doit|logit)
    ${SM} ${ARTICLE} | ${WRITELOG} ${LOGFILE} "Unknown control message by ${FROM}" \
	    ${NEWSMASTER} 
    ;;
esac

exit
