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(
|
$config['plugins'] = array(
|
||||||
'archive',
|
'archive',
|
||||||
'zipdownload',
|
'zipdownload',
|
||||||
'markasjunk'
|
'markasjunk',
|
||||||
|
'managesieve'
|
||||||
);
|
);
|
||||||
|
|
||||||
// Mail servers
|
// Mail servers
|
||||||
@@ -23,6 +24,10 @@ $config['smtp_port'] = 587;
|
|||||||
$config['smtp_user'] = '%u';
|
$config['smtp_user'] = '%u';
|
||||||
$config['smtp_pass'] = '%p';
|
$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
|
// We access the IMAP and SMTP servers locally with internal names, SSL
|
||||||
// will obviously fail but this sounds better than allowing insecure login
|
// will obviously fail but this sounds better than allowing insecure login
|
||||||
// from the outter world
|
// from the outter world
|
||||||
@@ -34,6 +39,7 @@ $ssl_no_check = array(
|
|||||||
);
|
);
|
||||||
$config['imap_conn_options'] = $ssl_no_check;
|
$config['imap_conn_options'] = $ssl_no_check;
|
||||||
$config['smtp_conn_options'] = $ssl_no_check;
|
$config['smtp_conn_options'] = $ssl_no_check;
|
||||||
|
$config['managesieve_conn_options'] = $ssl_no_check;
|
||||||
|
|
||||||
// skin name: folder from skins/
|
// skin name: folder from skins/
|
||||||
$config['skin'] = 'larry';
|
$config['skin'] = 'larry';
|
||||||
|
|||||||
Reference in New Issue
Block a user