blob: c05a096491b3221761eab103427d392111fdef49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
\$config['managesieve_port'] = 4190;
\$config['managesieve_host'] = '%h';
\$config['managesieve_auth_type'] = 'PLAIN';
\$config['managesieve_auth_cid'] = null;
\$config['managesieve_auth_pw'] = null;
\$config['managesieve_usetls'] = true;
\$config['managesieve_default'] = '/etc/dovecot/sieve/global';
\$config['managesieve_mbox_encoding'] = 'UTF-8';
\$config['managesieve_replace_delimiter'] = '';
\$config['managesieve_disabled_extensions'] = array();
\$config['managesieve_debug'] = true;
if (file_exists(RCUBE_CONFIG_DIR . '/' . \$_SERVER["HTTP_HOST"] . '/' . basename(__FILE__))) {
include_once(RCUBE_CONFIG_DIR . '/' . \$_SERVER["HTTP_HOST"] . '/' . basename(__FILE__));
}
?>
|