From 497309e2e4d2714d187e83cf664d517a17118a9d Mon Sep 17 00:00:00 2001 From: mwiegand Date: Thu, 8 Jul 2021 22:58:44 +0200 Subject: [PATCH] wip --- bundles/roundcube/files/config.inc.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/bundles/roundcube/files/config.inc.php b/bundles/roundcube/files/config.inc.php index f501634..a2fe73e 100644 --- a/bundles/roundcube/files/config.inc.php +++ b/bundles/roundcube/files/config.inc.php @@ -77,3 +77,12 @@ $config['plugins'] = array(${', '.join(f'"{plugin}"' for plugin in plugins)}); // the default locale setting (leave empty for auto-detection) // RFC1766 formatted language name like en_US, de_DE, de_CH, fr_FR, pt_BR $config['language'] = 'de_DE'; + + +// https://serverfault.com/a/991304 +$config['smtp_conn_options'] = array( + 'ssl' => array( + 'verify_peer' => false, + 'verify_peer_name' => false, + ), +);