From e83bc1c41c01e59f546d73fc2bbd5223b614bd5d Mon Sep 17 00:00:00 2001 From: DaCHack <62812480+DaCHack@users.noreply.github.com> Date: Sat, 30 Aug 2025 23:15:27 +0200 Subject: [PATCH] Update fetchmail.py --- 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 fa5820a0..e23dff3b 100755 --- a/optional/fetchmail/fetchmail.py +++ b/optional/fetchmail/fetchmail.py @@ -67,7 +67,7 @@ def run(debug): fetchmailrc = "" options = "options antispam 501, 504, 550, 553, 554" if "FETCHMAIL_OPTIONS" in os.environ: options += f' {os.environ["FETCHMAIL_OPTIONS"]}' - options += " ssl" if fetch["tls"] else "" + options += " ssl" if fetch["tls"] else " sslproto \'\'" options += " keep" if fetch["keep"] else " fetchall" options += " invisible" if fetch["invisible"] else "" folders = f"folders {",".join(f'"{imaputf7encode(item).replace('"',r"\34")}"' for item in fetch["folders"]) or '"INBOX"'}"