diff options
-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 |