Enable the managesieve plugin in Roundcube, fixes #81

master
Pierre Jaury 8 years ago
parent 72c4d2c15b
commit b2d00bbf86

@ -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';

Loading…
Cancel
Save