diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-07-26 16:12:04 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-07-26 16:12:04 +0000 |
commit | 25511ff8ed2d7fb72255265d22d042e7d4c5aea7 (patch) | |
tree | cd83c6dbb1206d2747ba07645c6d4e579d644c6a /configure.in | |
parent | db5358a3bc37a9bffb5a4b4b679d206081450754 (diff) | |
download | fetchmail-25511ff8ed2d7fb72255265d22d042e7d4c5aea7.tar.gz fetchmail-25511ff8ed2d7fb72255265d22d042e7d4c5aea7.tar.bz2 fetchmail-25511ff8ed2d7fb72255265d22d042e7d4c5aea7.zip |
Fixed the sendmail command.
svn path=/trunk/; revision=43
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.in b/configure.in index b3a20e1c..eb60c80b 100644 --- a/configure.in +++ b/configure.in @@ -58,8 +58,10 @@ case $host in AC_DEFINE(DEF_MDA,"/usr/bin/deliver %s") mdacmd="/usr/bin/deliver \$u" else - AC_DEFINE(DEF_MDA,"/usr/lib/sendmail -oem -t %s") - mdacmd="/bin/mail \$u" + # Do *not* use the -t option! We explicitly want only + # local delivery to the recepients named on the command line. + AC_DEFINE(DEF_MDA,"/usr/lib/sendmail -oem %s") + mdacmd="/usr/lib/sendmail \$u" fi ;; esac |