diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-07-19 16:36:43 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-07-19 16:36:43 +0000 |
commit | 3e954cdf885e844a8663aabfe71358b83e68dd96 (patch) | |
tree | 11531752e8dd8c98b3189751a4e4109bf8fa9d6c /configure.in | |
parent | 945d0233dffc534e9d739fcaa5bb67e1dd50abd8 (diff) | |
download | fetchmail-3e954cdf885e844a8663aabfe71358b83e68dd96.tar.gz fetchmail-3e954cdf885e844a8663aabfe71358b83e68dd96.tar.bz2 fetchmail-3e954cdf885e844a8663aabfe71358b83e68dd96.zip |
Change default agent to sendmail.
svn path=/trunk/; revision=40
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 17e96174..b3a20e1c 100644 --- a/configure.in +++ b/configure.in @@ -58,9 +58,7 @@ case $host in AC_DEFINE(DEF_MDA,"/usr/bin/deliver %s") mdacmd="/usr/bin/deliver \$u" else - # default case assumes /bin/mail is an MDA -- may LOSE mail on - # systems where it is not an MDA. - AC_DEFINE(DEF_MDA,"/bin/mail %s") + AC_DEFINE(DEF_MDA,"/usr/lib/sendmail -oem -t %s") mdacmd="/bin/mail \$u" fi ;; |