summaryrefslogtreecommitdiffstats
path: root/src/util/send-pr
diff options
context:
space:
mode:
authorSam Hartman <hartmans@mit.edu>1996-11-22 13:58:39 +0000
committerSam Hartman <hartmans@mit.edu>1996-11-22 13:58:39 +0000
commit4b55a949a315254e99c7b7f8226440f6e4ba93e8 (patch)
tree100e8c513e1267df020b15ca3c17dc3be85bdcf3 /src/util/send-pr
parent35f35d74f3d5515f9b21444af0b9791ada087e16 (diff)
downloadkrb5-4b55a949a315254e99c7b7f8226440f6e4ba93e8.tar.gz
krb5-4b55a949a315254e99c7b7f8226440f6e4ba93e8.tar.xz
krb5-4b55a949a315254e99c7b7f8226440f6e4ba93e8.zip
This commit was generated by cvs2svn to compensate for changes in r9511,
which included commits to RCS files with non-trunk default branches. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9512 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util/send-pr')
-rw-r--r--src/util/send-pr/send-pr.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/util/send-pr/send-pr.sh b/src/util/send-pr/send-pr.sh
index 96a9c2448a..7514462dcd 100644
--- a/src/util/send-pr/send-pr.sh
+++ b/src/util/send-pr/send-pr.sh
@@ -31,7 +31,7 @@ SUBMITTER=@SUBMITTER@
GNATS_ROOT=
# The default mail address for PR submissions.
-GNATS_ADDR=krb5-bugs@mit.edu
+GNATS_ADDR=bugs
# Where the gnats category tree lives.
DATADIR=@DATADIR@
@@ -55,17 +55,17 @@ GNATS_SITE=mit
# What mailer to use. This must come after the config file, since it is
# host-dependent.
-MAIL_AGENT="/usr/sbin/sendmail -oi -t"
-if [ ! -x `echo $MAIL_AGENT|sed 's/ .*//'` ] ; then
- ( [ -x /usr/lib/sendmail ] && MAIL_AGENT="/usr/lib/sendmail -oi -t" ) || \
- ( [ -x /usr/sbin/sendmail ] && MAIL_AGENT="/usr/sbin/sendmail -oi -t " ) || \
+MAIL_AGENT="/usr/lib/sendmail -oi -t"
+if [ ! -r `echo $MAIL_AGENT|sed 's/ .*//'` ] ; then
+ ( [ -r /usr/lib/sendmail ] && MAIL_AGENT="/usr/lib/sendmail -oi -t" ) || \
+ ( [ -r /usr/sbin/sendmail ] && MAIL_AGENT="/usr/sbin/sendmail -oi -t " ) || \
MAIL_AGENT="sendmail -oi -t "
fi
# How to read the passwd database.
PASSWD="cat /etc/passwd"
-ECHON=bsd
+ECHON=sysv
if [ $ECHON = bsd ] ; then
ECHON1="echo -n"