diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | driver.c | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -9,6 +9,7 @@ fetchmail-4.5.3 (): checking or fetching Kerberos tickets. This change eliminates many gethostbyname calls. * It's now possible to specify multiple spam-block responses as a list. +* Download-progress dots are no longer generated when syslog is enabled. * 1.1 version of fetchmailconf. Note: the DNS-usage change might conceivably break your configuration @@ -1421,7 +1421,7 @@ int num; /* index of message */ free_str_list(&xmit_names); return(PS_IOERR); } - else if (outlevel == O_VERBOSE) + else if (!run.use_syslog && outlevel == O_VERBOSE) fputs("#", stderr); /* write error notifications */ @@ -1528,7 +1528,7 @@ flag forward; /* TRUE to forward */ sizeticker += linelen; while (sizeticker >= SIZETICKER) { - if (outlevel > O_SILENT) + if (!run.use_syslog && outlevel > O_SILENT) error_build("."); sizeticker -= SIZETICKER; } |