aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 8042a20e..68306f51 100644
--- a/configure.in
+++ b/configure.in
@@ -65,8 +65,11 @@ case $host in
mdacmd="/usr/bin/deliver \$u"
else
# 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 -fpopmail %s")
+ # local delivery to the recipients named on the command line.
+ # Also don't use -fpopmail -- this looks tempting, but will
+ # cause lossage unless you always run popclient from the
+ # account of a privileged user.
+ AC_DEFINE(DEF_MDA,"/usr/lib/sendmail -oem %s")
mdacmd="/usr/lib/sendmail -fpopmail \$u"
fi
;;