summaryrefslogtreecommitdiff
path: root/roundcubemail/config
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-07-07 16:38:31 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-07-07 16:38:31 +0000
commit7855a5d2f87cf1907a8eb4ddc3d55a8f27d3f9ff (patch)
tree2be122c6d3443cee1ee3c45081e975785f268f16 /roundcubemail/config
parent8fff54e72bc627e608a7b8fde238551d4e36bc2c (diff)
- Added 'imap_debug' option, described 'sql_debug' option in config file
git-svn-id: https://svn.roundcube.net/trunk@2719 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/config')
-rw-r--r--roundcubemail/config/main.inc.php.dist7
1 files changed, 6 insertions, 1 deletions
diff --git a/roundcubemail/config/main.inc.php.dist b/roundcubemail/config/main.inc.php.dist
index d77372099..c60307ddb 100644
--- a/roundcubemail/config/main.inc.php.dist
+++ b/roundcubemail/config/main.inc.php.dist
@@ -14,7 +14,6 @@
$rcmail_config = array();
-
// system error reporting: 1 = log; 2 = report (not implemented yet), 4 = show, 8 = trace
$rcmail_config['debug_level'] = 1;
@@ -125,6 +124,12 @@ $rcmail_config['smtp_helo_host'] = '';
// Log sent messages
$rcmail_config['smtp_log'] = TRUE;
+// Log SQL queries to <log_dir>/sql or to syslog
+$rcmail_config['sql_debug'] = false;
+
+// Log IMAP conversation to <log_dir>/imap or to syslog
+$rcmail_config['imap_debug'] = false;
+
// How many seconds must pass between emails sent by a user
$rcmail_config['sendmail_delay'] = 0;