diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-08-23 13:45:00 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-08-23 13:45:00 +0000 |
commit | 921ab9a35a115e9612e61eb8c1ec32e8cc8faa34 (patch) | |
tree | c62a34e22a31c0355cafcc3f145dfdac582a8cf6 /configure.in | |
parent | 72ab3f64d0259e6c6c8925f6a92effc08ea782c8 (diff) | |
download | fetchmail-921ab9a35a115e9612e61eb8c1ec32e8cc8faa34.tar.gz fetchmail-921ab9a35a115e9612e61eb8c1ec32e8cc8faa34.tar.bz2 fetchmail-921ab9a35a115e9612e61eb8c1ec32e8cc8faa34.zip |
-f popmail doesn't work.
svn path=/trunk/; revision=58
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
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 ;; |