From 624b6bec3377d25849725c867d63bf7d98a7aa48 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Sat, 18 Jan 1997 06:40:25 +0000 Subject: Added dns/nodns. svn path=/trunk/; revision=785 --- fetchmail.c | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'fetchmail.c') 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) -- cgit v1.2.3