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 /fetchmail.c | |
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 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/fetchmail.c b/fetchmail.c index fa7b4625..eabc25d4 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -223,6 +223,13 @@ int main(int argc, char **argv) printf("+NLS"); #endif /* ENABLE_NLS */ putchar('\n'); + fputs("Fallback MDA: ", stdout); +#ifdef FALLBACK_MDA + fputs(FALLBACK_MDA, stdout); +#else + fputs("(none)", stdout); +#endif + putchar('\n'); fflush(stdout); /* this is an attempt to help remote debugging */ |