aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c
index 869f34d6..a1f0ba63 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -169,8 +169,16 @@ int main (int argc, char **argv)
printf("Lockfile at %s\n", tmpbuf);
if (batchlimit)
printf("SMTP message batch limit is %d.\n", batchlimit);
- else
+ else if (outlevel == O_VERBOSE)
printf("No SMTP message batch limit.\n");
+ if (interface)
+ printf("TCP/IP interface is %s.\n", interface);
+ else if (outlevel == O_VERBOSE)
+ printf("No TCP/IP interface specified\n");
+ if (monitor)
+ printf("Polling loop will monitor %s.\n", monitor);
+ else if (outlevel == O_VERBOSE)
+ printf("No monitor address specified\n");
for (ctl = querylist; ctl; ctl = ctl->next) {
if (ctl->active && !(implicitmode && ctl->skip))
dump_params(ctl);