diff options
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 |