From f3948a26b8d7cb8449970103876f2a40eaec0a1a Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Fri, 19 Apr 2019 10:27:31 +0200 Subject: [PATCH] Use .log suffix in options descriptions as it's the default --- config/defaults.inc.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/config/defaults.inc.php b/config/defaults.inc.php index f22df246b..21e71f229 100644 --- a/config/defaults.inc.php +++ b/config/defaults.inc.php @@ -92,34 +92,34 @@ $config['syslog_facility'] = LOG_USER; // Data will only be logged if a directory // exists and is writable. $config['per_user_logging'] = false; -// Log sent messages to /sendmail or to syslog +// Log sent messages to /sendmail.log or to syslog $config['smtp_log'] = true; -// Log successful/failed logins to /userlogins or to syslog +// Log successful/failed logins to /userlogins.log or to syslog $config['log_logins'] = false; -// Log session debug information/authentication errors to /session or to syslog +// Log session debug information/authentication errors to /session.log or to syslog $config['session_debug'] = false; -// Log SQL queries to /sql or to syslog +// Log SQL queries to /sql.log or to syslog $config['sql_debug'] = false; -// Log IMAP conversation to /imap or to syslog +// Log IMAP conversation to /imap.log or to syslog $config['imap_debug'] = false; -// Log LDAP conversation to /ldap or to syslog +// Log LDAP conversation to /ldap.log or to syslog $config['ldap_debug'] = false; -// Log SMTP conversation to /smtp or to syslog +// Log SMTP conversation to /smtp.log or to syslog $config['smtp_debug'] = false; -// Log Memcache conversation to /memcache or to syslog +// Log Memcache conversation to /memcache.log or to syslog $config['memcache_debug'] = false; -// Log APC conversation to /apc or to syslog +// Log APC conversation to /apc.log or to syslog $config['apc_debug'] = false; -// Log Redis conversation to /redis or to syslog +// Log Redis conversation to /redis.log or to syslog $config['redis_debug'] = false;