1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-08-10 22:31:47 +02:00

Implement managesieve support

This commit is contained in:
Florent Daigniere
2023-04-20 15:36:17 +02:00
parent 152a2bf175
commit 107b0ab5ff
15 changed files with 134 additions and 38 deletions

View File

@@ -24,7 +24,14 @@ $config['smtp_user'] = '%u';
$config['smtp_pass'] = '%p';
// Sieve script management
$config['managesieve_host'] = '{{ FRONT_ADDRESS or "front" }}:14190';
$config['managesieve_host'] = 'tls://{{ FRONT_ADDRESS or "front" }}:4190';
$config['managesieve_conn_options'] = array(
'ssl' => array(
'verify_peer' => false,
'verify_peer_name' => false,
'allow_self_signed' => true,
),
);
$config['managesieve_mbox_encoding'] = 'UTF8';
// roundcube customization

View File

@@ -33,13 +33,13 @@
},
"Sieve": {
"host": "{{ FRONT_ADDRESS }}",
"port": 14190,
"secure": 0,
"port": 4190,
"type": 2,
"shortLogin": false,
"ssl": {
"verify_peer": false,
"verify_peer_name": false,
"allow_self_signed": false,
"allow_self_signed": true,
"SNI_enabled": true,
"disable_compression": true,
"security_level": 1