1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-10-30 23:37:43 +02:00

Merge branch 'master' into patch-1

This commit is contained in:
DaCHack
2025-08-30 23:20:01 +02:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -66,7 +66,7 @@ def run(debug):
for fetch in fetches:
fetchmailrc = ""
options = "options antispam 501, 504, 550, 553, 554"
if "FETCHMAIL_OPTIONS" in os.environ: options += f' {os.environ["FETCHMAIL_OPTIONS"]}'
if "FETCHMAIL_OPTIONS" in os.environ: options += f'{ os.environ["FETCHMAIL_OPTIONS"]}'
options += " ssl" if fetch["tls"] else " sslproto \'\'"
options += " keep" if fetch["keep"] else " fetchall"
options += " invisible" if fetch["invisible"] else ""

View File

@@ -0,0 +1 @@
Fix fallback for non-ssl fetchmail connections