diff options
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fetchmail.c b/fetchmail.c index c2a2880e..3d145499 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -849,6 +849,7 @@ static void optmerge(struct query *h2, struct query *h1, int force) #endif FLAG_MERGE(expunge); + FLAG_MERGE(tracepolls); FLAG_MERGE(properties); #undef FLAG_MERGE } @@ -1817,6 +1818,11 @@ static void dump_params (struct runctl *runp, } } + if (ctl->tracepolls) + printf(_(" Poll trace information will be added to the Received header.\n")); + else if (outlevel >= O_VERBOSE) + printf(_(" No poll trace information will be added to the Received header.\n.\n")); + if (ctl->properties) printf(_(" Pass-through properties \"%s\".\n"), visbuf(ctl->properties)); |