Date: Wed, 16 Oct 1996 03:04:45 -0700 (PDT) From: John-Mark Gurney <jmg@nike.efn.org> To: FreeBSD-gnats-submit@freebsd.org Subject: bin/1823: Message-ID: <199610161004.DAA21301@nike.efn.org> Resent-Message-ID: <199610161010.DAA05113@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 1823 >Category: bin >Synopsis: >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 16 03:10:01 PDT 1996 >Last-Modified: >Originator: John-Mark Gurney >Organization: Cu Networking >Release: FreeBSD 2.2-960801-SNAP i386 >Environment: just a good old 2.2-0801-SNAP system >Description: if you have an environment variable $REPLY_TO set send-pr doesn't use it... caused my last send-pr not to have to proper reply-to address... also.. is it good not to include domain in from? of course is this the really intended behavior? >How-To-Repeat: in sh: export REPLY_TO=somethingelse send-pr /Reply-To: notice that it reads exactly the same as from: and not somethingelse >Fix: possibly apply this patch or someother patch: Index: send-pr.sh =================================================================== RCS file: /usr/cvs/src/gnu/usr.bin/send-pr/send-pr.sh,v retrieving revision 1.5 diff -c -r1.5 send-pr.sh *** send-pr.sh 1994/11/10 02:34:54 1.5 --- send-pr.sh 1996/10/16 09:58:51 *************** *** 81,87 **** fi FROM="$LOGNAME" ! REPLY_TO="$LOGNAME" # Find out the name of the originator of this PR. if [ -n "$NAME" ]; then --- 81,89 ---- fi FROM="$LOGNAME" ! if [ x"${REPLY_TO}" = x"" ]; then ! REPLY_TO="$LOGNAME" ! fi # Find out the name of the originator of this PR. if [ -n "$NAME" ]; then >Audit-Trail: >Unformatted: send-pr doesn't suck in $REPLY_TO if set
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199610161004.DAA21301>