colin at colinlikesfood.com
2022-Nov-22 18:03 UTC
Can't figure out why managesieve (pigeonhole) can't connect
i believe i have all but $config['managesieve_default'] = '', i will have to look that one up roundcube config.inc.php: <?php error_reporting(E_ALL & ~E_DEPRECATED & ~E_NOTICE); $config['db_dsnw'] = 'sqlite:////usr/local/sqlite/roundcube.sql?mode=0646'; $config['log_driver'] = 'syslog'; $config['syslog_facility'] = LOG_LOCAL1; $config['imap_host'] = 'tls://obfuscated.comain.com'; $config['smtp_host'] = 'tls://obfuscated.comain.com'; $config['smtp_port'] = 10025; $config['support_url'] = 'mailto:admin at obfuscated.comain.com'; $config['ip_check'] = true; $config['product_name'] = 'My Mail'; $config['identities_level'] = 3; $config['drafts_mbox'] = 'INBOX.Drafts'; $config['sent_mbox'] = 'INBOX.Sent'; $config['junk_mbox'] = 'INBOX.Junk'; $config['trash_mbox'] = 'INBOX.Deleted'; $config['default_folders'] = array('INBOX', 'INBOX.Drafts', 'INBOX.Sent', 'INBOX.Junk', 'INBOX.Deleted'); $config['create_default_folders'] = true; $config['protect_default_folders'] = true; $config['show_real_foldernames'] = false; $config['enable_spellcheck'] = true; $config['draft_autosave'] = 1; $config['mime_param_folding'] = 0; $config['mdn_requests'] = 2; $config['login_lc'] = 0; $config['default_charset'] = 'UTF-8'; $config['password_charset'] = 'UTF-8'; $config['mime_types'] = '/usr/local/etc/apache24/mime.types'; $config['plugins'] = array('managesieve','emoticons'); $config['cipher_method'] = 'AES-256-CBC'; $config['des_key'] = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'; $config['managesieve_port'] = 4190; $config['managesieve_auth_type'] = 'cram-md5'; $config['managesieve_host'] = 'tls://obfuscated.comain.com'; $config['managesieve_usetls'] = true; $config['managesieve_vacation'] = 1; $config['managesieve_forward'] = 1; $config['managesieve_debug'] = true; $config['debug_level'] = 1; $config['sql_debug'] = true; $config['imap_debug'] = true; $config['ldap_debug'] = true; $config['smtp_debug'] = true; On 2022-11-22 11:23, dovecot at ptld.com wrote:>> Subject line says it all? I am using Roundcube, and every time i >> click on "filters" i get RC's "unable to connect to server" message. > > Did you edit the plugin config for your setup or are you just using > defaults? > For example: > > $config['managesieve_host'] = 'localhost:4190'; > $config['managesieve_auth_type'] = 'PLAIN'; > $config['managesieve_default'] = '';-------------- next part -------------- An HTML attachment was scrubbed... URL: <https://dovecot.org/pipermail/dovecot/attachments/20221122/f95bad6b/attachment.htm>
hi at zakaria.website
2022-Nov-22 20:54 UTC
Can't figure out why managesieve (pigeonhole) can't connect
Change tl s:// to s sl://, it might work. If didnt, RC dropped ss l support at some point and later returned it in master 1.6. My recommendation it is upgrade to latest RC or refer to the managesieve s sl recent commit and apply the changes manually. Zakaria.