include a "To:" line in the message passsed to sendmail.

from Gordon Burditt <gordon@sneaky.lonestar.org>
This commit is contained in:
cgd 1993-05-13 06:15:23 +00:00
parent 69d1a121b3
commit 1a7cf74fda
1 changed files with 2 additions and 2 deletions

View File

@ -62,8 +62,8 @@ then
exit
fi
case "$#" in
0) sendmail -t -oi $BUGADDR < $TEMP ;;
*) sendmail -t -oi "$@" < $TEMP ;;
0) (echo "To: $BUGADDR"; cat $TEMP) | sendmail -t -oi ;;
*) (echo "To: $@"; cat $TEMP ) | sendmail -t -oi ;;
esac
fi