add imaps listener
All checks were successful
Build Multiarch Container Image / call-reusable-workflow (push) Successful in 1m14s

This commit is contained in:
Sebastian Hugentobler 2024-04-26 20:23:06 +02:00
parent f45cab5235
commit 88645e7dd0
Signed by: shu
GPG Key ID: BB32CF3CA052C2F0
2 changed files with 6 additions and 0 deletions

View File

@ -1,4 +1,5 @@
auth_username_chars = {{getenv "ALLOWED_USERNAME_CHARS" "äöüabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@"}} auth_username_chars = {{getenv "ALLOWED_USERNAME_CHARS" "äöüabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@"}}
auth_username_format ="%Ln" auth_username_format ="%Ln"
auth_mechanisms = {{getenv "AUTH_MECHANISMS" "plain login oauthbearer xoauth2"}} auth_mechanisms = {{getenv "AUTH_MECHANISMS" "plain login oauthbearer xoauth2"}}
disable_plaintext_auth = yes
!include auth-oauth2.conf.ext !include auth-oauth2.conf.ext

View File

@ -2,6 +2,11 @@ service imap-login {
inet_listener imap { inet_listener imap {
port = 143 port = 143
} }
inet_listener imaps {
port = 993
ssl = yes
}
} }
service lmtp { service lmtp {