This commit is contained in:
Renaud Boyer 2020-12-06 13:48:42 +01:00
parent 21e928548f
commit ced9c879d3
1 changed files with 12 additions and 8 deletions

View File

@ -4,14 +4,18 @@ import flask_migrate
from IPython import embed from IPython import embed
from sqlalchemy_utils import create_database, database_exists, drop_database from sqlalchemy_utils import create_database, database_exists, drop_database
from app.config import ( from app.config import DB_URI
DB_URI,
ALIAS_DOMAINS,
PREMIUM_ALIAS_DOMAINS,
)
from app.dns_utils import get_ns
from app.email_utils import send_email, render, get_email_domain_part from app.email_utils import send_email, render, get_email_domain_part
from app.models import * from app.log import LOG
from app.extensions import db
from app.models import (
User,
DeletedAlias,
SLDomain,
CustomDomain,
DomainDeletedAlias,
Mailbox,
)
from job_runner import ( from job_runner import (
onboarding_pgp, onboarding_pgp,
onboarding_browser_extension, onboarding_browser_extension,
@ -129,7 +133,7 @@ def disable_mailbox(mailbox_id):
email_msg = f"""Hi, email_msg = f"""Hi,
Your mailbox {mailbox.email} cannot receive emails. Your mailbox {mailbox.email} cannot receive emails.
To avoid forwarding emails to an invalid mailbox, we have disabled this mailbox along with all of its aliases. To avoid forwarding emails to an invalid mailbox, we have disabled this mailbox along with all of its aliases.
If this is a mistake, please reply to this email. If this is a mistake, please reply to this email.