You've already forked Mailu
mirror of
https://github.com/Mailu/Mailu.git
synced 2025-11-23 22:04:47 +02:00
Enable the managesieve plugin in Roundcube, fixes #81
This commit is contained in:
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user