1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-08-25 19:30:54 +00:00

add logging entries for dovecot, adjust for imap

This commit is contained in:
Peter Bieringer 2025-01-20 06:31:56 +01:00
parent f9457f00f7
commit 26637a1240
2 changed files with 4 additions and 1 deletions

View file

@ -31,7 +31,7 @@ class Auth(auth.BaseAuth):
logger.info("auth imap host: %r", self._host)
self._security = self.configuration.get("auth", "imap_security")
if self._security == "none":
logger.info("auth imap security: %s (INSECURE, credentials are transmitted in clear text)", self._security)
logger.warning("auth imap security: %s (INSECURE, credentials are transmitted in clear text)", self._security)
else:
logger.info("auth imap security: %s", self._security)
if self._security == "tls":