File plesk.managesieve.inc.php of Package roundcubemail-selfcontained

29
 
1
<?php
2
    $config['managesieve_host'] = '%h:4190';
3
    $config['managesieve_auth_type'] = 'PLAIN';
4
    $config['managesieve_auth_cid'] = null;
5
    $config['managesieve_auth_pw'] = null;
6
    $config['managesieve_default'] = '/etc/dovecot/sieve/global';
7
    $config['managesieve_mbox_encoding'] = 'UTF-8';
8
    $config['managesieve_replace_delimiter'] = '';
9
    $config['managesieve_disabled_extensions'] = array();
10
    $config['managesieve_debug'] = false;
11
    $config['managesieve_vacation'] = 1;
12
    $config['managesieve_domains'] = array();
13
    $config['managesieve_filename_extension'] = '';
14
15
    $config['managesieve_conn_options'] = Array(
16
        'ssl' => Array(
17
            'verify_peer' => FALSE,
18
            'verify_peer_name' => FALSE
19
        )
20
    );
21
22
    $config['managesieve_kolab_master'] = false;
23
24
    if (file_exists(RCUBE_CONFIG_DIR . '/' . ($_SERVER["HTTP_HOST"] ?? "") . '/' . basename(__FILE__))) {
25
        include_once(RCUBE_CONFIG_DIR . '/' . ($_SERVER["HTTP_HOST"] ?? "") . '/' . basename(__FILE__));
26
    }
27
28
?>
29