Skip to content

Commit 4284cd5

Browse files
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 <[email protected]>
1 parent 5daf33f commit 4284cd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/user.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ def user_info(username):
616616
if service_status("dovecot")["status"] != "running":
617617
logger.warning(m18n.n("mailbox_used_space_dovecot_down"))
618618
elif username not in user_permission_info("mail.main")["corresponding_users"]:
619-
logger.warning(m18n.n("mailbox_disabled", user=username))
619+
logger.debug(m18n.n("mailbox_disabled", user=username))
620620
else:
621621
try:
622622
uid_ = user["uid"][0]

0 commit comments

Comments
 (0)