2020-04-25 11:30:09 +02:00
|
|
|
from smtplib import SMTPRecipientsRefused
|
|
|
|
|
2020-02-23 08:08:55 +01:00
|
|
|
from flask import render_template, request, redirect, url_for, flash
|
|
|
|
from flask_login import login_required, current_user
|
|
|
|
from flask_wtf import FlaskForm
|
2020-04-25 11:30:09 +02:00
|
|
|
from itsdangerous import Signer
|
2020-02-23 08:08:55 +01:00
|
|
|
from wtforms import validators
|
|
|
|
from wtforms.fields.html5 import EmailField
|
|
|
|
|
2020-05-07 13:28:04 +02:00
|
|
|
from app.config import ENFORCE_SPF, MAILBOX_SECRET
|
2020-02-23 08:08:55 +01:00
|
|
|
from app.config import URL
|
|
|
|
from app.dashboard.base import dashboard_bp
|
2020-05-15 23:18:30 +02:00
|
|
|
from app.email_utils import email_domain_can_be_used_as_mailbox
|
2020-03-09 14:01:27 +01:00
|
|
|
from app.email_utils import mailbox_already_used, render, send_email
|
2020-02-23 08:08:55 +01:00
|
|
|
from app.extensions import db
|
|
|
|
from app.log import LOG
|
2020-03-17 11:51:40 +01:00
|
|
|
from app.models import Alias, DeletedAlias
|
2020-02-23 08:08:55 +01:00
|
|
|
from app.models import Mailbox
|
2020-03-08 12:51:53 +01:00
|
|
|
from app.pgp_utils import PGPException, load_public_key
|
2020-02-23 08:08:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
class ChangeEmailForm(FlaskForm):
|
|
|
|
email = EmailField(
|
|
|
|
"email", validators=[validators.DataRequired(), validators.Email()]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@dashboard_bp.route("/mailbox/<int:mailbox_id>/", methods=["GET", "POST"])
|
|
|
|
@login_required
|
|
|
|
def mailbox_detail_route(mailbox_id):
|
|
|
|
mailbox = Mailbox.get(mailbox_id)
|
|
|
|
if not mailbox or mailbox.user_id != current_user.id:
|
|
|
|
flash("You cannot see this page", "warning")
|
|
|
|
return redirect(url_for("dashboard.index"))
|
|
|
|
|
|
|
|
change_email_form = ChangeEmailForm()
|
|
|
|
|
|
|
|
if mailbox.new_email:
|
|
|
|
pending_email = mailbox.new_email
|
|
|
|
else:
|
|
|
|
pending_email = None
|
|
|
|
|
2020-03-08 12:30:48 +01:00
|
|
|
if request.method == "POST":
|
|
|
|
if (
|
|
|
|
request.form.get("form-name") == "update-email"
|
|
|
|
and change_email_form.validate_on_submit()
|
|
|
|
):
|
2020-05-20 18:16:18 +02:00
|
|
|
new_email = change_email_form.email.data.lower().strip()
|
2020-03-08 12:30:48 +01:00
|
|
|
if new_email != mailbox.email and not pending_email:
|
|
|
|
# check if this email is not already used
|
2020-05-23 19:50:36 +02:00
|
|
|
if mailbox_already_used(new_email, current_user) or Alias.get_by(
|
|
|
|
email=new_email
|
2020-03-08 12:30:48 +01:00
|
|
|
):
|
|
|
|
flash(f"Email {new_email} already used", "error")
|
2020-05-15 23:18:30 +02:00
|
|
|
elif not email_domain_can_be_used_as_mailbox(new_email):
|
2020-03-13 10:34:41 +01:00
|
|
|
flash("You cannot use this email address as your mailbox", "error")
|
2020-03-08 12:30:48 +01:00
|
|
|
else:
|
|
|
|
mailbox.new_email = new_email
|
|
|
|
db.session.commit()
|
2020-02-23 08:08:55 +01:00
|
|
|
|
2020-03-09 09:22:40 +01:00
|
|
|
try:
|
2020-05-23 16:40:28 +02:00
|
|
|
verify_mailbox_change(current_user, mailbox, new_email)
|
2020-03-09 09:22:40 +01:00
|
|
|
except SMTPRecipientsRefused:
|
|
|
|
flash(
|
|
|
|
f"Incorrect mailbox, please recheck {mailbox.email}",
|
|
|
|
"error",
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
flash(
|
|
|
|
f"You are going to receive an email to confirm {new_email}.",
|
|
|
|
"success",
|
|
|
|
)
|
2020-03-08 12:30:48 +01:00
|
|
|
return redirect(
|
|
|
|
url_for("dashboard.mailbox_detail_route", mailbox_id=mailbox_id)
|
|
|
|
)
|
2020-05-07 13:28:04 +02:00
|
|
|
elif request.form.get("form-name") == "force-spf":
|
|
|
|
if not ENFORCE_SPF:
|
|
|
|
flash("SPF enforcement globally not enabled", "error")
|
|
|
|
return redirect(url_for("dashboard.index"))
|
|
|
|
|
|
|
|
mailbox.force_spf = (
|
|
|
|
True if request.form.get("spf-status") == "on" else False
|
|
|
|
)
|
|
|
|
db.session.commit()
|
|
|
|
flash(
|
|
|
|
"SPF enforcement was " + "enabled"
|
|
|
|
if request.form.get("spf-status")
|
2020-05-20 18:16:18 +02:00
|
|
|
else "disabled" + " successfully",
|
2020-05-07 13:28:04 +02:00
|
|
|
"success",
|
|
|
|
)
|
|
|
|
return redirect(
|
|
|
|
url_for("dashboard.mailbox_detail_route", mailbox_id=mailbox_id)
|
|
|
|
)
|
2020-03-08 12:30:48 +01:00
|
|
|
elif request.form.get("form-name") == "pgp":
|
|
|
|
if request.form.get("action") == "save":
|
2020-03-19 19:15:42 +01:00
|
|
|
if not current_user.is_premium():
|
|
|
|
flash("Only premium plan can add PGP Key", "warning")
|
|
|
|
return redirect(
|
|
|
|
url_for("dashboard.mailbox_detail_route", mailbox_id=mailbox_id)
|
|
|
|
)
|
|
|
|
|
2020-03-08 12:30:48 +01:00
|
|
|
mailbox.pgp_public_key = request.form.get("pgp")
|
2020-03-08 12:51:53 +01:00
|
|
|
try:
|
|
|
|
mailbox.pgp_finger_print = load_public_key(mailbox.pgp_public_key)
|
|
|
|
except PGPException:
|
|
|
|
flash("Cannot add the public key, please verify it", "error")
|
|
|
|
else:
|
|
|
|
db.session.commit()
|
|
|
|
flash("Your PGP public key is saved successfully", "success")
|
|
|
|
return redirect(
|
|
|
|
url_for("dashboard.mailbox_detail_route", mailbox_id=mailbox_id)
|
|
|
|
)
|
2020-03-08 12:30:48 +01:00
|
|
|
elif request.form.get("action") == "remove":
|
2020-03-19 19:15:42 +01:00
|
|
|
# Free user can decide to remove their added PGP key
|
2020-03-08 12:30:48 +01:00
|
|
|
mailbox.pgp_public_key = None
|
|
|
|
mailbox.pgp_finger_print = None
|
|
|
|
db.session.commit()
|
|
|
|
flash("Your PGP public key is removed successfully", "success")
|
2020-02-23 08:08:55 +01:00
|
|
|
return redirect(
|
|
|
|
url_for("dashboard.mailbox_detail_route", mailbox_id=mailbox_id)
|
|
|
|
)
|
|
|
|
|
2020-05-07 13:28:04 +02:00
|
|
|
spf_available = ENFORCE_SPF
|
2020-03-05 11:00:58 +01:00
|
|
|
return render_template("dashboard/mailbox_detail.html", **locals())
|
2020-02-23 08:08:55 +01:00
|
|
|
|
|
|
|
|
2020-05-23 16:40:28 +02:00
|
|
|
def verify_mailbox_change(user, mailbox, new_email):
|
|
|
|
s = Signer(MAILBOX_SECRET)
|
|
|
|
mailbox_id_signed = s.sign(str(mailbox.id)).decode()
|
|
|
|
verification_url = (
|
|
|
|
URL + "/dashboard/mailbox/confirm_change" + f"?mailbox_id={mailbox_id_signed}"
|
|
|
|
)
|
|
|
|
|
|
|
|
send_email(
|
|
|
|
new_email,
|
|
|
|
f"Confirm mailbox change on SimpleLogin",
|
|
|
|
render(
|
|
|
|
"transactional/verify-mailbox-change.txt",
|
|
|
|
user=user,
|
|
|
|
link=verification_url,
|
|
|
|
mailbox_email=mailbox.email,
|
|
|
|
mailbox_new_email=new_email,
|
|
|
|
),
|
|
|
|
render(
|
|
|
|
"transactional/verify-mailbox-change.html",
|
|
|
|
user=user,
|
|
|
|
link=verification_url,
|
|
|
|
mailbox_email=mailbox.email,
|
|
|
|
mailbox_new_email=new_email,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-02-23 08:08:55 +01:00
|
|
|
@dashboard_bp.route(
|
|
|
|
"/mailbox/<int:mailbox_id>/cancel_email_change", methods=["GET", "POST"]
|
|
|
|
)
|
|
|
|
@login_required
|
|
|
|
def cancel_mailbox_change_route(mailbox_id):
|
|
|
|
mailbox = Mailbox.get(mailbox_id)
|
|
|
|
if not mailbox or mailbox.user_id != current_user.id:
|
|
|
|
flash("You cannot see this page", "warning")
|
|
|
|
return redirect(url_for("dashboard.index"))
|
|
|
|
|
|
|
|
if mailbox.new_email:
|
|
|
|
mailbox.new_email = None
|
|
|
|
db.session.commit()
|
|
|
|
flash("Your mailbox change is cancelled", "success")
|
|
|
|
return redirect(
|
|
|
|
url_for("dashboard.mailbox_detail_route", mailbox_id=mailbox_id)
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
flash("You have no pending mailbox change", "warning")
|
|
|
|
return redirect(
|
|
|
|
url_for("dashboard.mailbox_detail_route", mailbox_id=mailbox_id)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@dashboard_bp.route("/mailbox/confirm_change")
|
|
|
|
def mailbox_confirm_change_route():
|
2020-02-29 12:18:52 +01:00
|
|
|
s = Signer(MAILBOX_SECRET)
|
2020-02-23 08:08:55 +01:00
|
|
|
mailbox_id = request.args.get("mailbox_id")
|
|
|
|
|
|
|
|
try:
|
|
|
|
r_id = int(s.unsign(mailbox_id))
|
2020-03-09 09:17:40 +01:00
|
|
|
except Exception:
|
2020-02-23 08:08:55 +01:00
|
|
|
flash("Invalid link", "error")
|
2020-03-09 09:14:21 +01:00
|
|
|
return redirect(url_for("dashboard.index"))
|
2020-02-23 08:08:55 +01:00
|
|
|
else:
|
|
|
|
mailbox = Mailbox.get(r_id)
|
|
|
|
|
2020-03-09 09:14:21 +01:00
|
|
|
# new_email can be None if user cancels change in the meantime
|
|
|
|
if mailbox and mailbox.new_email:
|
|
|
|
mailbox.email = mailbox.new_email
|
|
|
|
mailbox.new_email = None
|
|
|
|
|
|
|
|
# mark mailbox as verified if the change request is sent from an unverified mailbox
|
|
|
|
mailbox.verified = True
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
LOG.d("Mailbox change %s is verified", mailbox)
|
|
|
|
flash(f"The {mailbox.email} is updated", "success")
|
|
|
|
return redirect(
|
|
|
|
url_for("dashboard.mailbox_detail_route", mailbox_id=mailbox.id)
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
flash("Invalid link", "error")
|
|
|
|
return redirect(url_for("dashboard.index"))
|