mirror of
https://github.com/outbackdingo/Mailu.git
synced 2026-01-27 10:19:35 +00:00
Update fetchmail.py
Corrected wrong quotation marks
This commit is contained in:
@@ -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 "OPTIONS" in os.environ: options += f' {os.environ["OPTIONS"]}'
|
||||
options += " ssl" if fetch["tls"] else ""
|
||||
options += " keep" if fetch["keep"] else " fetchall"
|
||||
folders = f"folders {",".join(f'"{imaputf7encode(item).replace('"',r"\34")}"' for item in fetch["folders"]) or '"INBOX"'}"
|
||||
|
||||
Reference in New Issue
Block a user