summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-07-07 16:38:31 +0000
committeralecpl <alec@alec.pl>2009-07-07 16:38:31 +0000
commitd559cba5f7b92f152dd0330e2870d5512cd34e51 (patch)
treec17c8f25f70d93fe05314105081248d2f99938d2 /config
parentb6b593416bb1bef12c30b0cea8c92221d4b7a5c2 (diff)
- Added 'imap_debug' option, described 'sql_debug' option in config file
Diffstat (limited to 'config')
-rw-r--r--config/main.inc.php.dist7
1 files changed, 6 insertions, 1 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist
index d77372099..c60307ddb 100644
--- a/config/main.inc.php.dist
+++ b/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;