| | |
| | | <?php |
| | | |
| | | // managesieve server port |
| | | $rcmail_config['managesieve_port'] = 2000; |
| | | // managesieve server port. When empty the port will be determined automatically |
| | | // using getservbyname() function, with 4190 as a fallback. |
| | | $rcmail_config['managesieve_port'] = null; |
| | | |
| | | // managesieve server address, default is localhost. |
| | | // Replacement variables supported in host name: |
| | |
| | | $rcmail_config['managesieve_auth_pw'] = null; |
| | | |
| | | // use or not TLS for managesieve server connection |
| | | // it's because I've problems with TLS and dovecot's managesieve plugin |
| | | // and it's not needed on localhost |
| | | // Note: tls:// prefix in managesieve_host is also supported |
| | | $rcmail_config['managesieve_usetls'] = false; |
| | | |
| | | // default contents of filters script (eg. default spam filter) |
| | |
| | | // Scripts listed here will be not presented to the user. |
| | | $rcmail_config['managesieve_filename_exceptions'] = array(); |
| | | |
| | | // List of domains limiting destination emails in redirect action |
| | | // If not empty, user will need to select domain from a list |
| | | $config['managesieve_domains'] = array(); |
| | | |
| | | ?> |