include a "To:" line in the message passsed to sendmail.
from Gordon Burditt <gordon@sneaky.lonestar.org>
This commit is contained in:
parent
69d1a121b3
commit
1a7cf74fda
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue