From dd3f681b79c2dbe47d7ae23e62611b2abcc050b1 Mon Sep 17 00:00:00 2001 From: Nils Vogels Date: Thu, 14 Aug 2025 15:39:33 +0200 Subject: [PATCH] fix: update ssloptions for fetchmail --- optional/fetchmail/fetchmail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/optional/fetchmail/fetchmail.py b/optional/fetchmail/fetchmail.py index 96f387dd..fc1edd72 100755 --- a/optional/fetchmail/fetchmail.py +++ b/optional/fetchmail/fetchmail.py @@ -66,7 +66,7 @@ def run(debug): for fetch in fetches: fetchmailrc = "" options = "options antispam 501, 504, 550, 553, 554" - options += " ssl" if fetch["tls"] else "" + options += " ssl" if fetch["tls"] else " sslproto \'\'" options += " keep" if fetch["keep"] else " fetchall" folders = f"folders {",".join(f'"{imaputf7encode(item).replace('"',r"\34")}"' for item in fetch["folders"]) or '"INBOX"'}" fetchmailrc += RC_LINE.format(