1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-03-18 18:07:22 +01:00

Fixed SIM110 (reimplemented-builtin)

This commit is contained in:
Teal Dulcet
2023-12-22 07:20:48 -08:00
committed by Joshua Tauberer
parent 99d3929f99
commit 81a4da0181
2 changed files with 2 additions and 8 deletions

View File

@@ -86,10 +86,7 @@ def prettify_idn_email_address(email):
def is_dcv_address(email):
email = email.lower()
for localpart in ("admin", "administrator", "postmaster", "hostmaster", "webmaster", "abuse"):
if email.startswith((localpart + "@", localpart + "+")):
return True
return False
return any(email.startswith((localpart + "@", localpart + "+")) for localpart in ("admin", "administrator", "postmaster", "hostmaster", "webmaster", "abuse"))
def open_database(env, with_connection=False):
conn = sqlite3.connect(env["STORAGE_ROOT"] + "/mail/users.sqlite")