Switching to alpine:3.12 and use fetchmail from alpine repository

alpine3:12 provides fetchmail 6.4.5, so building fetchmail from alpha branch
is not needed anymore (ssl wrapped mode issue fixed) since 6.4.2
This commit is contained in:
ofthesun9
2020-06-16 08:15:13 +02:00
parent 1d35b1283d
commit e8b72099a7
2 changed files with 3 additions and 18 deletions

View File

@@ -56,7 +56,7 @@ def run(debug):
for fetch in fetches:
fetchmailrc = ""
options = "options antispam 501, 504, 550, 553, 554"
options += " sslmode wrapped" if fetch["tls"] else ""
options += " ssl" if fetch["tls"] else ""
options += " keep" if fetch["keep"] else " fetchall"
fetchmailrc += RC_LINE.format(
user_email=escape_rc_string(fetch["user_email"]),