| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <?php
- // managesieve server address, default is localhost.
- // Replacement variables supported in host name:
- // %h - user's IMAP hostname
- // %n - http hostname ($_SERVER['SERVER_NAME'])
- // %d - domain (http hostname without the first part)
- // For example %n = mail.domain.tld, %d = domain.tld
- $config["managesieve_host"] = "localhost:4190";
- // authentication method. Can be CRAM-MD5, DIGEST-MD5, PLAIN, LOGIN, EXTERNAL
- // or none. Optional, defaults to best method supported by server.
- $config["managesieve_auth_type"] = null;
- // Optional managesieve authentication identifier to be used as authorization proxy.
- // Authenticate as a different user but act on behalf of the logged in user.
- // Works with PLAIN and DIGEST-MD5 auth.
- $config["managesieve_auth_cid"] = null;
- // Optional managesieve authentication password to be used for imap_auth_cid
- $config["managesieve_auth_pw"] = null;
- // use or not TLS for managesieve server connection
- // Note: tls:// prefix in managesieve_host is also supported
- $config["managesieve_usetls"] = false;
- // Connection scket context options
- // See http://php.net/manual/en/context.ssl.php
- // The example below enables server certificate validation
- //$config['managesieve_conn_options'] = array(
- // 'ssl' => array(
- // 'verify_peer' => true,
- // 'verify_depth' => 3,
- // 'cafile' => '/etc/openssl/certs/ca.crt',
- // ),
- // );
- // Note: These can be also specified as an array of options indexed by hostname
- $config["managesieve_conn_options"] = null;
- // A file with default script content (eg. spam filter)
- //$config['managesieve_default'] = '/etc/dovecot/sieve/global';
- $config["managesieve_default"] = "/etc/dovecot/sieve/default";
- // The name of the script which will be used when there's no user script
- $config["managesieve_script_name"] = "managesieve";
- // Sieve RFC says that we should use UTF-8 endcoding for mailbox names,
- // but some implementations does not covert UTF-8 to modified UTF-7.
- // Defaults to UTF7-IMAP
- $config["managesieve_mbox_encoding"] = "UTF-8";
- // I need this because my dovecot (with listescape plugin) uses
- // ':' delimiter, but creates folders with dot delimiter
- $config["managesieve_replace_delimiter"] = "";
- // disabled sieve extensions (body, copy, date, editheader, encoded-character,
- // envelope, environment, ereject, fileinto, ihave, imap4flags, index,
- // mailbox, mboxmetadata, regex, reject, relational, servermetadata,
- // spamtest, spamtestplus, subaddress, vacation, variables, virustest, etc.
- // Note: not all extensions are implemented
- $config["managesieve_disabled_extensions"] = [];
- // Enables debugging of conversation with sieve server. Logs it into <log_dir>/sieve
- $config["managesieve_debug"] = false;
- // Enables features described in http://wiki.kolab.org/KEP:14
- $config["managesieve_kolab_master"] = false;
- // Script name extension used for scripts including. Dovecot uses '.sieve',
- // Cyrus uses '.siv'. Doesn't matter if you have managesieve_kolab_master disabled.
- $config["managesieve_filename_extension"] = ".sieve";
- // List of reserved script names (without extension).
- // Scripts listed here will be not presented to the user.
- $config["managesieve_filename_exceptions"] = [];
- // List of domains limiting destination emails in redirect action
- // If not empty, user will need to select domain from a list
- $config["managesieve_domains"] = [];
- // Default list of entries in header selector
- $config["managesieve_default_headers"] = ["Subject", "From", "To"];
- // Enables separate management interface for vacation responses (out-of-office)
- // 0 - no separate section (default),
- // 1 - add Vacation section,
- // 2 - add Vacation section, but hide Filters section
- $config["managesieve_vacation"] = 0;
- // Enables separate management interface for setting forwards (redirect to and copy to)
- // 0 - no separate section (default),
- // 1 - add Forward section,
- // 2 - add Forward section, but hide Filters section
- $config["managesieve_forward"] = 0;
- // Default vacation interval (in days).
- // Note: If server supports vacation-seconds extension it is possible
- // to define interval in seconds here (as a string), e.g. "3600s".
- $config["managesieve_vacation_interval"] = 0;
- // Some servers require vacation :addresses to be filled with all
- // user addresses (aliases). This option enables automatic filling
- // of these on initial vacation form creation.
- $config["managesieve_vacation_addresses_init"] = false;
- // Sometimes you want to always reply with mail email address
- // This option enables automatic filling of :from field on initial vacation form creation.
- $config["managesieve_vacation_from_init"] = false;
- // Supported methods of notify extension. Default: 'mailto'
- $config["managesieve_notify_methods"] = ["mailto"];
- // Enables scripts RAW editor feature
- $config["managesieve_raw_editor"] = true;
- // Disabled actions
- // Prevent user from performing specific actions:
- // list_sets, enable_disable_set, delete_set, new_set, download_set, new_rule, delete_rule
- // Note: disabling list_sets removes the Filter sets widget from the UI and means
- // the set defined in managesieve_script_name will always be used (and activated)
- $config["managesieve_disabled_actions"] = [];
- // List of hosts that support managesieve.
- // Activate managesieve for selected hosts only. If this is not set all hosts are allowed.
- // Example: $config['managesieve_allowed_hosts'] = array('host1.mydomain.com','host2.mydomain.com');
- $config["managesieve_allowed_hosts"] = null;
|