make sure to use lowercase for mailbox email

This commit is contained in:
Son NK 2020-05-20 18:16:18 +02:00
parent 93d972df09
commit 32a9bd9095
3 changed files with 5 additions and 4 deletions

3
.gitignore vendored
View File

@ -9,4 +9,5 @@ config
static/node_modules
db.sqlite-journal
static/upload
adhoc_*
adhoc_*
adhoc.py

View File

@ -82,7 +82,7 @@ def mailbox_route():
return redirect(url_for("dashboard.mailbox_route"))
if new_mailbox_form.validate():
mailbox_email = new_mailbox_form.email.data.lower()
mailbox_email = new_mailbox_form.email.data.lower().strip()
if mailbox_already_used(mailbox_email, current_user):
flash(f"{mailbox_email} already used", "error")

View File

@ -45,7 +45,7 @@ def mailbox_detail_route(mailbox_id):
request.form.get("form-name") == "update-email"
and change_email_form.validate_on_submit()
):
new_email = change_email_form.email.data
new_email = change_email_form.email.data.lower().strip()
if new_email != mailbox.email and not pending_email:
# check if this email is not already used
if (
@ -112,7 +112,7 @@ def mailbox_detail_route(mailbox_id):
flash(
"SPF enforcement was " + "enabled"
if request.form.get("spf-status")
else "disabled" + " succesfully",
else "disabled" + " successfully",
"success",
)
return redirect(