iredmail-doc/en_US/troubleshooting/debug.roundcubemail.md
Zhang Huangbin 9394bd17a4 Sync upgrade tutorials:
* Web server: Enable HSTS (HTTP Strict Transport Security) support.
* SOGo: Fix improper settings in Apache/Nginx config file.

New: en_US/troubleshooting/debug.roundcubemail.md.
Improve en_US/overview/0-used.components.md: mention how to check software versions.
2015-12-03 09:30:45 +08:00

598 B

Turn on debug mode in Roundcube webmail

Please follow the tutorial to find Roundcube config file (config/config.inc.php) first: Locations of configuration and log files of mojor components

Then add below settings in config/config.inc.php:

// system error reporting, sum of: 1 = log; 4 = show
$config['debug_level'] = 1;

// Log SQL queries
$config['sql_debug'] = true;

// Log IMAP conversation
$config['imap_debug'] = true;

// Log LDAP conversation
$config['ldap_debug'] = true;

// Log SMTP conversation
$config['smtp_debug'] = true;