Merge in some code from latest send-pr snapshot.

The mail transfer agent is now responsible for adding the proper hostname,
etc.  This should fix brezak's bug.
This commit is contained in:
jtc 1994-01-24 19:48:21 +00:00
parent 48077f51c5
commit 3a4dbd9b7b
1 changed files with 3 additions and 18 deletions

View File

@ -63,27 +63,12 @@ TEMP=$TMPDIR/p$$
BAD=$TMPDIR/pbad$$
REF=$TMPDIR/pf$$
if [ -z "$HOSTNAME" ]; then
if [ -f /bin/hostname ] ; then HOSTNAME=`/bin/hostname`
elif [ -f /usr/bin/hostname ] ; then HOSTNAME=`/usr/bin/hostname`
# Solaris et al.
elif [ -f /usr/ucb/hostname ] ; then HOSTNAME=`/usr/ucb/hostname`
# Irix
elif [ -f /usr/bsd/hostname ] ; then HOSTNAME=`/usr/bsd/hostname`
else echo "$COMMAND: HOSTNAME not set and hostname not found"; exit 1
fi
fi
if [ -z "$LOGNAME" -a -n "$USER" ]; then
LOGNAME=$USER
fi
if [ -z "$LOGNAME" ]; then
FROM=
REPLY_TO=
else
FROM="$LOGNAME@$HOSTNAME"
REPLY_TO="$LOGNAME@$HOSTNAME"
fi
FROM="$LOGNAME"
REPLY_TO="$LOGNAME"
# Find out the name of the originator of this PR.
if [ -n "$NAME" ]; then