:
#
# Front-end to mmdf submit program.
#
# Submit is the correct method of submitting mail to mmdf.  This is used as a
# front-end to submit for use with listserv.  If a sucessful error code is
# return, translate it to a zero.  Otherwise, exit with the exit code submit
# returned.
#

/usr/mmdf/bin/submit "-mlruxto,cc*"
code=$?
if expr $code \< 64 >/dev/null
then
    exit 0
else
    exit $code
fi

