1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-05 00:27:25 +00:00
mailinabox/setup/mods.available/roundcube-debug.sh

29 lines
705 B
Bash
Executable File

#!/bin/bash
#
# this mod will enable roundcube debugging output. output goes
# /var/log/roundcubemail
#
source setup/functions.sh # load our functions
source /etc/mailinabox.conf # load global vars
# where webmail.sh installs roundcube
RCM_DIR=/usr/local/lib/roundcubemail
CONF=${1:-$RCM_DIR/config/config.inc.php}
php tools/editconf.php $CONF config \
'log_driver' 'file' \
'syslog_facility' 'constant("LOG_MAIL")' \
'debug_level' '4' \
'imap_debug' 'true' \
'imap_log_session' 'true' \
'sql_debug' 'true' \
'smtp_debug' 'true' \
'session_debug' 'true' \
'log_logins' 'true' \
'log_errors' 'true' \
'per_user_logging' 'false' \
'session_lifetime' '2'