diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2002-06-07 14:49:34 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2002-06-07 14:49:34 +0000 |
commit | ae4422381e78b2541118bf04909813c51a54b147 (patch) | |
tree | a3768e8707a7ff07acd2be39eb4e5d316d26a543 /configure.in | |
parent | 020ac3168772c3fef1fe5240717cb14273f345c8 (diff) | |
download | fetchmail-ae4422381e78b2541118bf04909813c51a54b147.tar.gz fetchmail-ae4422381e78b2541118bf04909813c51a54b147.tar.bz2 fetchmail-ae4422381e78b2541118bf04909813c51a54b147.zip |
sendmail -i improvement.
svn path=/trunk/; revision=3638
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/configure.in b/configure.in index ac3b338e..05a37097 100644 --- a/configure.in +++ b/configure.in @@ -243,7 +243,7 @@ case "$enable_fallback" in AC_ERROR([Sendmail selected as fallback, but not found]) #not reached fi - AC_DEFINE_UNQUOTED(FALLBACK_MDA, "$sendmail %T") + AC_DEFINE_UNQUOTED(FALLBACK_MDA, "$sendmail -i %T") echo "Will use $sendmail as fallback MDA." ;; procmail) if test -z "$procmail" ; then @@ -262,13 +262,12 @@ case "$enable_fallback" in ;; no|unset) echo "Will not use a fallback MDA" ;; - auto|yes|set) if test -n "$procmail" ; then - AC_DEFINE_UNQUOTED(FALLBACK_MDA,"$procmail -d %T") - echo "Will use $procmail as fallback MDA." - elif test -n "$sendmail" ; then - AC_DEFINE_UNQUOTED(FALLBACK_MDA,"$sendmail %T") + auto|yes|set) if test -n "$sendmail" ; then + AC_DEFINE_UNQUOTED(FALLBACK_MDA,"$sendmail -i %T") echo "Will use $sendmail as fallback MDA." - else echo "No fallback MDA available." + else + echo "No fallback MDA available. procmail and maildrop are not eligible" + echo "for automatic fallback MDA configuration for reliability reasons." fi ;; *) AC_ERROR([unkown value for --enable-fallback given: $enable_fallback]) |