diff --git a/radicale/auth/dovecot.py b/radicale/auth/dovecot.py index 340253c1..b3f3fb81 100644 --- a/radicale/auth/dovecot.py +++ b/radicale/auth/dovecot.py @@ -1,6 +1,7 @@ # This file is part of Radicale Server - Calendar Server # Copyright © 2014 Giel van Schijndel # Copyright © 2019 (GalaxyMaster) +# Copyright © 2025-2025 Peter Bieringer # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -35,9 +36,11 @@ def __init__(self, configuration): if config_family == "AF_UNIX": self.family = socket.AF_UNIX self.address = configuration.get("auth", "dovecot_socket") + logger.info("auth dovecot socket: %r", self.address) return self.address = configuration.get("auth", "dovecot_host"), configuration.get("auth", "dovecot_port") + logger.warning("auth dovecot address: %r (INSECURE, credentials are transmitted in clear text)", self.address) if config_family == "AF_INET": self.family = socket.AF_INET else: diff --git a/radicale/auth/imap.py b/radicale/auth/imap.py index 8b3c2972..3fdbaa70 100644 --- a/radicale/auth/imap.py +++ b/radicale/auth/imap.py @@ -31,7 +31,7 @@ def __init__(self, configuration) -> None: 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":