Update fetchmail.py

This commit is contained in:
DaCHack
2025-08-24 02:00:53 +02:00
committed by GitHub
parent 301235f5b2
commit b399ef7133

View File

@@ -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 ""