From b399ef71337ef8176761907cbedd6e52e5922015 Mon Sep 17 00:00:00 2001 From: DaCHack <62812480+DaCHack@users.noreply.github.com> Date: Sun, 24 Aug 2025 02:00:53 +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 98cf3d42..fa5820a0 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" - if "OPTIONS" in os.environ: options += f' {os.environ["OPTIONS"]}' + if "FETCHMAIL_OPTIONS" in os.environ: options += f' {os.environ["FETCHMAIL_OPTIONS"]}' options += " ssl" if fetch["tls"] else "" options += " keep" if fetch["keep"] else " fetchall" options += " invisible" if fetch["invisible"] else ""