Allow the same mailbox used by different user

This commit is contained in:
Son NK 2020-05-07 21:47:11 +02:00
parent f8e896541d
commit c85ea1538e
2 changed files with 3 additions and 3 deletions

View File

@ -64,7 +64,7 @@ def custom_alias():
# check if mailbox is not tempered with
if mailbox_email != current_user.email:
mailbox = Mailbox.get_by(email=mailbox_email)
mailbox = Mailbox.get_by(email=mailbox_email, user_id=current_user.id)
if not mailbox or mailbox.user_id != current_user.id:
flash("Something went wrong, please retry", "warning")
return redirect(url_for("dashboard.custom_alias"))
@ -91,7 +91,7 @@ def custom_alias():
"warning",
)
else:
mailbox = Mailbox.get_by(email=mailbox_email)
mailbox = Mailbox.get_by(email=mailbox_email, user_id=current_user.id)
alias = Alias.create(
user_id=current_user.id,

View File

@ -376,7 +376,7 @@ def email_already_used(email: str) -> bool:
def mailbox_already_used(email: str, user) -> bool:
if Mailbox.get_by(email=email):
if Mailbox.get_by(email=email, user_id=user.id):
return True
# support the case user wants to re-add their real email as mailbox