diff options
author | Christopher Baines <mail@cbaines.net> | 2020-01-20 19:02:49 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-01-20 19:13:16 +0000 |
commit | c8defb2b2a4daf370497e6be1047a1fcf82143e1 (patch) | |
tree | d8076821d86fd707275ca986c6098f50494e20be /gnu | |
parent | 2e1a31487122aa841d513c212f65d47294a927a6 (diff) | |
download | patches-c8defb2b2a4daf370497e6be1047a1fcf82143e1.tar patches-c8defb2b2a4daf370497e6be1047a1fcf82143e1.tar.gz |
services: getmail: Adjust a couple of default configuration values.
Change the message-log-syslog and message-log-verbose configuration values to
match the Getmail defaults.
* gnu/services/getmail.scm (getmail-options-configuration): Change defaults
for message-log-syslog and message-log-verbose
* doc/guix.texi (Mail Services): Update the Getmail documentation accordingly.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/services/getmail.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/services/getmail.scm b/gnu/services/getmail.scm index 93e0ab1add..7d77888517 100644 --- a/gnu/services/getmail.scm +++ b/gnu/services/getmail.scm @@ -203,11 +203,11 @@ session with the server. A value of @samp{0} disables this feature.") "Getmail will record a log of its actions to the named file. A value of @samp{\"\"} disables this feature.") (message-log-syslog - (boolean #t) + (boolean #f) "If true, getmail will record a log of its actions using the system logger.") (message-log-verbose - (boolean #t) + (boolean #f) "If true, getmail will log information about messages not retrieved and the reason for not retrieving them, as well as starting and ending information lines.") |