diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-08-04 04:10:40 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-08-04 04:10:40 +0000 |
commit | 4fe1884292376b223d3dee76b194a47e90323541 (patch) | |
tree | b47d68765ace204afe94e2fa14576ba6bb42566b /fetchmail.c | |
parent | dcb63c343a411c59257407b07f08c2210e236c80 (diff) | |
download | fetchmail-4fe1884292376b223d3dee76b194a47e90323541.tar.gz fetchmail-4fe1884292376b223d3dee76b194a47e90323541.tar.bz2 fetchmail-4fe1884292376b223d3dee76b194a47e90323541.zip |
Added `postconnect'.
svn path=/trunk/; revision=1226
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/fetchmail.c b/fetchmail.c index 3f0ce69c..715e7246 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -930,9 +930,15 @@ void dump_params (struct query *ctl) printf("\n"); } if (ctl->preconnect) - printf(" Server connection will be preinitialized with '%s.'\n", visbuf(ctl->preconnect)); + printf(" Server connection will be brought up with '%s.'\n", + visbuf(ctl->preconnect)); else if (outlevel == O_VERBOSE) - printf(" No preinitialization command.\n"); + printf(" No pre-connection command.\n"); + if (ctl->postconnect) + printf(" Server connection will be taken down with '%s.'\n", + visbuf(ctl->postconnect)); + else if (outlevel == O_VERBOSE) + printf(" No post-connection command.\n"); if (!ctl->localnames) printf(" No localnames declared for this host.\n"); else |