diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-10-01 15:31:07 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-10-01 15:31:07 +0000 |
commit | b07733a0d149c043ca0ba7bea99702c765ad29e4 (patch) | |
tree | 944d8cdda20d2ec904316b0e8f02cd28de3031c5 | |
parent | 5e2531d279924612457f18093695a213a4427f2a (diff) | |
download | fetchmail-b07733a0d149c043ca0ba7bea99702c765ad29e4.tar.gz fetchmail-b07733a0d149c043ca0ba7bea99702c765ad29e4.tar.bz2 fetchmail-b07733a0d149c043ca0ba7bea99702c765ad29e4.zip |
More report tweaks.
svn path=/trunk/; revision=1462
-rw-r--r-- | fetchmail.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/fetchmail.c b/fetchmail.c index 7d69bf0f..33954a31 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -933,9 +933,9 @@ void dump_params (struct query *ctl) printf(" No SMTP message batch limit (--batchlimit 0).\n"); if (ctl->server.protocol == P_IMAP) if (ctl->expunge > 0) - printf(" Max deletions between expunges is %d (--expunge %d).\n", ctl->expunge, ctl->expunge); + printf(" Deletion interval between expunges is %d (--expunge %d).\n", ctl->expunge, ctl->expunge); else if (outlevel == O_VERBOSE) - printf(" No deletion limit between expunges (--expunge 0).\n"); + printf(" No expunges (--expunge 0).\n"); if (ctl->mda) printf(" Messages will be delivered with '%s.'\n", visbuf(ctl->mda)); else @@ -967,7 +967,12 @@ void dump_params (struct query *ctl) for (idp = ctl->localnames; idp; idp = idp->next) ++count; - printf(" %d local name(s) recognized.\n", count); + if (count > 1 || ctl->wildcard) + printf(" Multi-drop mode: "); + else + printf(" Single-drop mode: "); + + printf("%d local name(s) recognized.\n", count); if (outlevel == O_VERBOSE) { for (idp = ctl->localnames; idp; idp = idp->next) |