From 4284cd5d10af319f42f83fd00db6b1797bbbe78c Mon Sep 17 00:00:00 2001 From: selfhoster1312 <121760708+selfhoster1312@users.noreply.github.com> Date: Thu, 21 Dec 2023 15:35:16 +0100 Subject: [PATCH] Only warn that mailbox is disabled for admins (#1739) * Only warn that mailbox is disabled for admins * Requality warning about "disabled mail perm for user" as debug --------- Co-authored-by: Alexandre Aubin <4533074+alexAubin@users.noreply.github.com> --- src/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/user.py b/src/user.py index 4ad23525a..7af39e185 100644 --- a/src/user.py +++ b/src/user.py @@ -616,7 +616,7 @@ def user_info(username): if service_status("dovecot")["status"] != "running": logger.warning(m18n.n("mailbox_used_space_dovecot_down")) elif username not in user_permission_info("mail.main")["corresponding_users"]: - logger.warning(m18n.n("mailbox_disabled", user=username)) + logger.debug(m18n.n("mailbox_disabled", user=username)) else: try: uid_ = user["uid"][0]