From f1a5d8222b1748cd593250adad984aacc45f0fe5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Peters?= Date: Wed, 9 Jan 2019 08:50:53 +0100 Subject: [PATCH] Update third_party-roundcube.md --- docs/third_party-roundcube.md | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) 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.