From 25511ff8ed2d7fb72255265d22d042e7d4c5aea7 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Fri, 26 Jul 1996 16:12:04 +0000 Subject: Fixed the sendmail command. svn path=/trunk/; revision=43 --- configure.in | 6 ++++-- 1 file 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 -- cgit v1.2.3