diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-03-13 09:59:32 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-03-13 09:59:32 +0000 |
commit | 5a2c422ccff9c0a0f3777d31c4af38b6c0256fdc (patch) | |
tree | c52663738a5d4dfc5c5acc2f240d71a90f384557 /fetchmail.c | |
parent | fde28f60a7cc6f1cac487b0365e2a2be1fb59f49 (diff) | |
download | fetchmail-5a2c422ccff9c0a0f3777d31c4af38b6c0256fdc.tar.gz fetchmail-5a2c422ccff9c0a0f3777d31c4af38b6c0256fdc.tar.bz2 fetchmail-5a2c422ccff9c0a0f3777d31c4af38b6c0256fdc.zip |
Added -U option.
svn path=/trunk/; revision=931
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fetchmail.c b/fetchmail.c index c01d255e..ce301534 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -632,6 +632,7 @@ static int load_params(int argc, char **argv, int optind) DEFAULT(ctl->rewrite, TRUE); DEFAULT(ctl->stripcr, (ctl->mda != (char *)NULL)); DEFAULT(ctl->server.dns, TRUE); + DEFAULT(ctl->server.uidl, FALSE); #undef DEFAULT /* plug in the semi-standard way of indicating a mail address */ @@ -812,6 +813,8 @@ void dump_params (struct query *ctl) printf(" (using port %d)", ctl->server.port); else if (outlevel == O_VERBOSE) printf(" (using default port)"); + if (ctl->server.uidl) + printf(" (forcing UIDL use)"); putchar('.'); putchar('\n'); if (ctl->server.authenticate == A_KERBEROS) |