diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-01-18 06:40:25 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-01-18 06:40:25 +0000 |
commit | 624b6bec3377d25849725c867d63bf7d98a7aa48 (patch) | |
tree | e56daa8947de3b7cd81324f61efbe05f76d84f81 /fetchmail.c | |
parent | 194f6a69e8db6392c1c16e228e954312a1b9f347 (diff) | |
download | fetchmail-624b6bec3377d25849725c867d63bf7d98a7aa48.tar.gz fetchmail-624b6bec3377d25849725c867d63bf7d98a7aa48.tar.bz2 fetchmail-624b6bec3377d25849725c867d63bf7d98a7aa48.zip |
Added dns/nodns.
svn path=/trunk/; revision=785
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/fetchmail.c b/fetchmail.c index b621c056..c60c77ae 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -807,8 +807,8 @@ void dump_params (struct query *ctl) ctl->flush ? "" : " not", ctl->flush ? "on" : "off"); printf(" Rewrite of server-local addresses is %sabled (--norewrite %s).\n", - ctl->norewrite ? "dis" : "en", - ctl->norewrite ? "on" : "off"); + ctl->no_rewrite ? "dis" : "en", + ctl->no_rewrite ? "on" : "off"); if (ctl->limit) printf(" Message size limit is %d bytes (--limit %d).\n", ctl->limit, ctl->limit); @@ -855,18 +855,22 @@ void dump_params (struct query *ctl) fputs("*\n", stdout); } + printf(" DNS lookup for multidrop addresses is %sabled.\n", + ctl->server.no_dns ? "dis" : "en", + ctl->server.no_dns ? "on" : "off"); + if (count > 1) printf(" Envelope header is assumed to be: %s\n", ctl->server.envelope); } #ifdef linux if (ctl->server.interface) - printf("TCP/IP interface requirements for %s.\n", ctl->server.interface); + printf(" Connection must be through interface %s.\n", ctl->server.interface); else if (outlevel == O_VERBOSE) - printf("No TCP/IP interface requirements specified.\n"); + printf(" No interface requirement specified.\n"); if (ctl->server.monitor) - printf("Polling loop will monitor %s.\n", ctl->server.monitor); + printf(" Polling loop will monitor %s.\n", ctl->server.monitor); else if (outlevel == O_VERBOSE) - printf("No monitor interface specified.\n"); + printf(" No monitor interrface specified.\n"); #endif if (ctl->server.protocol > P_POP2) |