diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-07-24 20:56:44 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-07-24 20:56:44 +0000 |
commit | 10af4f205182e3acd6654d4997e2351e7860849a (patch) | |
tree | 5e7560b2a2f555b6a9bbfa861ff13ef18796b70b /fetchmail.c | |
parent | 5a4181c31df9e925f3e6c0b978bf54e66629ee52 (diff) | |
download | fetchmail-10af4f205182e3acd6654d4997e2351e7860849a.tar.gz fetchmail-10af4f205182e3acd6654d4997e2351e7860849a.tar.bz2 fetchmail-10af4f205182e3acd6654d4997e2351e7860849a.zip |
Added the via option.
svn path=/trunk/; revision=1179
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/fetchmail.c b/fetchmail.c index 7810ec9b..dfd0c300 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -135,8 +135,12 @@ int main (int argc, char **argv) printf("\n"); else printf(" and %s\n", rcfile); + if (poll_interval) + printf("Poll interval is %d seconds\n", poll_interval); if (outlevel == O_VERBOSE) printf("Lockfile at %s\n", tmpbuf); + if (logfile) + printf("Logfile is %s\n", logfile); for (ctl = querylist; ctl; ctl = ctl->next) { if (ctl->active && !(implicitmode && ctl->server.skip)) dump_params(ctl); @@ -779,10 +783,9 @@ void dump_params (struct query *ctl) printf("Options for retrieving from %s@%s:\n", ctl->remotename, visbuf(ctl->server.names->id)); - if (logfile) - printf(" Logfile is %s\n", logfile); - if (poll_interval) - printf(" Poll interval is %d seconds\n", poll_interval); + if (ctl->server.via) + printf(" Mail will be retrieved via %s\n", ctl->server.via); + if (ctl->server.interval) printf(" Poll of this server will occur every %d intervals.\n", ctl->server.interval); |