diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-01-09 08:14:53 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-01-09 08:14:53 +0000 |
commit | 7f32cacbd31832e7c2410b24a40aa6e7c8f820bf (patch) | |
tree | 0501dab30bd6a176d1439b108a511aee14572daf /fetchmail.c | |
parent | 6feef116d81caa80cc12ebdfc041df358418f2f1 (diff) | |
download | fetchmail-7f32cacbd31832e7c2410b24a40aa6e7c8f820bf.tar.gz fetchmail-7f32cacbd31832e7c2410b24a40aa6e7c8f820bf.tar.bz2 fetchmail-7f32cacbd31832e7c2410b24a40aa6e7c8f820bf.zip |
Added localdomains option.
svn path=/trunk/; revision=724
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/fetchmail.c b/fetchmail.c index 7925f38d..21ba5841 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -834,6 +834,15 @@ void dump_params (struct query *ctl) printf(" (default).\n"); else printf(".\n"); + if (ctl->localdomains) + { + struct idlist *idp; + + printf(" Local domains:"); + for (idp = ctl->localdomains; idp; idp = idp->next) + printf(" %s", idp->id); + putchar('\n'); + } printf(" %s messages will be retrieved (--all %s).\n", ctl->fetchall ? "All" : "Only new", |