From b2d00bbf861bed3712f3f95f7185b386eb2755c1 Mon Sep 17 00:00:00 2001 From: Pierre Jaury Date: Tue, 18 Oct 2016 23:03:43 +0200 Subject: [PATCH] Enable the managesieve plugin in Roundcube, fixes #81 --- roundcube/config.inc.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/roundcube/config.inc.php b/roundcube/config.inc.php index 78f0c646..65de8617 100644 --- a/roundcube/config.inc.php +++ b/roundcube/config.inc.php @@ -12,7 +12,8 @@ $config['reply_all_mode'] = 1; $config['plugins'] = array( 'archive', 'zipdownload', - 'markasjunk' + 'markasjunk', + 'managesieve' ); // Mail servers @@ -23,6 +24,10 @@ $config['smtp_port'] = 587; $config['smtp_user'] = '%u'; $config['smtp_pass'] = '%p'; +// Sieve script management +$config['managesieve_host'] = 'imap'; +$config['managesieve_usetls'] = true; + // We access the IMAP and SMTP servers locally with internal names, SSL // will obviously fail but this sounds better than allowing insecure login // from the outter world @@ -34,6 +39,7 @@ $ssl_no_check = array( ); $config['imap_conn_options'] = $ssl_no_check; $config['smtp_conn_options'] = $ssl_no_check; +$config['managesieve_conn_options'] = $ssl_no_check; // skin name: folder from skins/ $config['skin'] = 'larry';