From 839021f9ebe389ff514a06bfca1c9f1076552eda Mon Sep 17 00:00:00 2001 From: link2xt Date: Sun, 26 Jun 2022 12:21:12 +0000 Subject: [PATCH] python: enable certificate checks in cloned accounts --- CHANGELOG.md | 1 + python/src/deltachat/testplugin.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 873dc7919..c0ccbad7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ ### Fixes - improved error handling for account setup from qrcode #3474 +- python: enable certificate checks in cloned accounts #3443 ## 1.92.0 diff --git a/python/src/deltachat/testplugin.py b/python/src/deltachat/testplugin.py index 4bd23c8ac..335e384a5 100644 --- a/python/src/deltachat/testplugin.py +++ b/python/src/deltachat/testplugin.py @@ -497,6 +497,8 @@ class ACFactory: configdict = dict( addr=cloned_from.get_config("addr"), mail_pw=cloned_from.get_config("mail_pw"), + imap_certificate_checks=cloned_from.get_config("imap_certificate_checks"), + smtp_certificate_checks=cloned_from.get_config("smtp_certificate_checks"), ) configdict.update(kwargs) ac = self._get_cached_account(addr=configdict["addr"]) if cache else None