diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2013-11-25 17:29:10 +0100 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2013-11-25 17:29:10 +0100 |
commit | 16df2c27cf3fc7218621648c20febaa32f26c3ac (patch) | |
tree | 3577ee173bf6ffb0133108aca3d881775c837b94 /share | |
parent | bf10544b4a71929af6593cc2f5002cd547d31a21 (diff) | |
download | pykolab-16df2c27cf3fc7218621648c20febaa32f26c3ac.tar.gz |
Turn off debugging in production
Diffstat (limited to 'share')
-rw-r--r-- | share/templates/roundcubemail/config.inc.php.tpl | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/share/templates/roundcubemail/config.inc.php.tpl b/share/templates/roundcubemail/config.inc.php.tpl index df759e6..74b75ff 100644 --- a/share/templates/roundcubemail/config.inc.php.tpl +++ b/share/templates/roundcubemail/config.inc.php.tpl @@ -115,14 +115,14 @@ \$config['log_date_format'] = 'd-M-Y H:i:s,u O'; \$config['syslog_id'] = 'roundcube'; \$config['syslog_facility'] = LOG_USER; - \$config['smtp_log'] = true; + \$config['smtp_log'] = false; \$config['log_logins'] = true; - \$config['log_session'] = true; - \$config['sql_debug'] = true; - \$config['memcache_debug'] = true; - \$config['imap_debug'] = true; - \$config['ldap_debug'] = true; - \$config['smtp_debug'] = true; + \$config['log_session'] = false; + \$config['sql_debug'] = false; + \$config['memcache_debug'] = false; + \$config['imap_debug'] = false; + \$config['ldap_debug'] = false; + \$config['smtp_debug'] = false; \$config['skin'] = 'larry'; \$config['skin_include_php'] = false; @@ -206,4 +206,9 @@ \$config['htmleditor'] = 0; + \$config['kolab_http_request'] = Array( + 'ssl_verify_host' => false, + 'ssl_verify_peer' => false, + ); + ?> |