diff --git a/docs/third_party-roundcube.md b/docs/third_party-roundcube.md index 5c3400432..fa19cc410 100644 --- a/docs/third_party-roundcube.md +++ b/docs/third_party-roundcube.md @@ -16,10 +16,10 @@ Create a file `data/web/rc/config/config.inc.php` with the following content. array('verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true) + 'ssl' => array('verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true) ); $config['enable_installer'] = true; $config['smtp_conn_options'] = array( -'ssl' => array('verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true) + 'ssl' => array('verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true) ); + +$config['managesieve_port'] = 4190; +$config['managesieve_host'] = 'tls://dovecot'; +$config['managesieve_conn_options'] = array( + 'ssl' => array('verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true) +); +// Enables separate management interface for vacation responses (out-of-office) +// 0 - no separate section (default), +// 1 - add Vacation section, +// 2 - add Vacation section, but hide Filters section +$config['managesieve_vacation'] = 1; + ``` Point your browser to `https://myserver/rc/installer` and follow the instructions.