Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2022-11-13 15:23:17 +0300
committerAleksander Machniak <alec@alec.pl>2022-11-13 15:23:17 +0300
commitb7b130e52cf6974b615c1e48d322ff70df030794 (patch)
tree655aa3c416a184d16971da15034ee4d95584505f
parente6ed5ae19e3071d4d3203a38b57167fb83ce0051 (diff)
Change 'smtp_log' option default value to False
-rw-r--r--CHANGELOG.md1
-rw-r--r--config/defaults.inc.php2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 83732d1eb..78ff37e9b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,7 @@
- Store uploads metadata in a separate sql database table instead of a session (#8415)
- Advanced mail search syntax with more possibilities (without UI) (#8502)
- Support for HAproxy protocol header in IMAP connections (#8625)
+- Change 'smtp_log' option default value to False
- Enigma: Support Kolab's Web Of Anti-Trust feature (#8626)
- Password: Add ldap_samba_ad driver (#8525)
- Managesieve: Support Sieverules disabled rule format (#8571)
diff --git a/config/defaults.inc.php b/config/defaults.inc.php
index bc5a58215..135bd0e96 100644
--- a/config/defaults.inc.php
+++ b/config/defaults.inc.php
@@ -97,7 +97,7 @@ $config['syslog_facility'] = LOG_USER;
$config['per_user_logging'] = false;
// Log sent messages to <log_dir>/sendmail.log or to syslog
-$config['smtp_log'] = true;
+$config['smtp_log'] = false;
// Log successful/failed logins to <log_dir>/userlogins.log or to syslog
$config['log_logins'] = false;