1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-01 23:57:05 +00:00

Return the result, not None to avoid crashing the management daemon

This commit is contained in:
downtownallday 2024-03-12 10:22:49 -04:00
parent 5e24d22dba
commit 88558f81e3

View File

@ -1326,7 +1326,7 @@ def remove_mail_alias(address_utf8, env, do_kick=True, auto=None, ignore_if_not_
# Update things in case any domains are removed.
return kick(env, return_status)
else:
None
return return_status
def add_auto_aliases(aliases, env):