aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/guix.texi4
-rw-r--r--gnu/services/getmail.scm4
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/guix.texi b/doc/guix.texi
index 25dc8b9124..2b5bfc6cb7 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -17902,7 +17902,7 @@ Defaults to @samp{""}.
If true, getmail will record a log of its actions using the system
logger.
-Defaults to @samp{#t}.
+Defaults to @samp{#f}.
@end deftypevr
@@ -17911,7 +17911,7 @@ 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.
-Defaults to @samp{#t}.
+Defaults to @samp{#f}.
@end deftypevr
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.")