diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-04-18 18:32:03 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-04-18 18:32:03 +0000 |
commit | ec014e8c69e65b56063735ee47cb29173cae113e (patch) | |
tree | 3b03a971a283036041e191348868847f3f1d3670 /fetchmail.c | |
parent | 42da1e74000a8d3507c8ba11848bd2f3998d1cd2 (diff) | |
download | fetchmail-ec014e8c69e65b56063735ee47cb29173cae113e.tar.gz fetchmail-ec014e8c69e65b56063735ee47cb29173cae113e.tar.bz2 fetchmail-ec014e8c69e65b56063735ee47cb29173cae113e.zip |
Enable expunge to controil POP2 and POP3 checkpointing.
svn path=/trunk/; revision=2439
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fetchmail.c b/fetchmail.c index 54e54405..5ace5344 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -885,7 +885,6 @@ static int load_params(int argc, char **argv, int optind) def_opts.server.timeout = CLIENT_TIMEOUT; def_opts.warnings = WARNING_INTERVAL; def_opts.remotename = user; - def_opts.expunge = 1; def_opts.listener = SMTP_MODE; /* this builds the host list */ @@ -1493,9 +1492,9 @@ static void dump_params (struct runctl *runp, printf(_(" No SMTP message batch limit (--batchlimit 0).\n")); if (ctl->server.protocol == P_IMAP) if (NUM_NONZERO(ctl->expunge)) - printf(_(" Deletion interval between expunges is %d (--expunge %d).\n"), ctl->expunge, ctl->expunge); + printf(_(" Deletion interval between expunges forced to %d (--expunge %d).\n"), ctl->expunge, ctl->expunge); else if (outlevel >= O_VERBOSE) - printf(_(" No expunges (--expunge 0).\n")); + printf(_(" No forced expunges (--expunge 0).\n")); } if (ctl->bsmtp) printf(_(" Messages will be appended to %s as BSMTP\n"), visbuf(ctl->bsmtp)); |