diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-01-08 22:24:23 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-01-08 22:24:23 +0000 |
commit | 961c949249137dceec492ad84edc2a4d2ad12796 (patch) | |
tree | 5d68d6da50220270105c763a494f7f229a8794d9 /fetchmail.c | |
parent | a44cd4f05642454a89c60e8dc6a87bd04da2a9d2 (diff) | |
download | fetchmail-961c949249137dceec492ad84edc2a4d2ad12796.tar.gz fetchmail-961c949249137dceec492ad84edc2a4d2ad12796.tar.bz2 fetchmail-961c949249137dceec492ad84edc2a4d2ad12796.zip |
Added the preconnect feature.
svn path=/trunk/; revision=719
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fetchmail.c b/fetchmail.c index e21b7b65..7925f38d 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -861,6 +861,10 @@ void dump_params (struct query *ctl) printf(" Messages will be delivered with '%s.'\n", visbuf(ctl->mda)); else printf(" Messages will be SMTP-forwarded to '%s'.\n", visbuf(ctl->smtphost)); + if (ctl->preconnect[0]) + printf(" Server connection will be preinitialized with '%s.'\n", visbuf(ctl->preconnect)); + else if (outlevel == O_VERBOSE) + printf(" No preinitialization command.\n"); if (!ctl->localnames) printf(" No localnames declared for this host.\n"); else |