2022-04-06 12:51:04 +02:00
|
|
|
import random
|
2022-01-04 18:06:08 +01:00
|
|
|
from email.message import EmailMessage
|
2022-04-06 12:51:04 +02:00
|
|
|
from typing import List
|
2022-01-04 18:06:08 +01:00
|
|
|
|
2022-04-06 12:51:04 +02:00
|
|
|
import pytest
|
2022-03-18 15:44:07 +01:00
|
|
|
from aiosmtpd.smtp import Envelope
|
|
|
|
|
|
|
|
import email_handler
|
2022-04-06 12:51:04 +02:00
|
|
|
from app.config import BOUNCE_EMAIL, EMAIL_DOMAIN, ALERT_DMARC_FAILED_REPLY_PHASE
|
|
|
|
from app.db import Session
|
2022-03-18 15:44:07 +01:00
|
|
|
from app.email import headers, status
|
2022-03-21 18:33:18 +01:00
|
|
|
from app.models import (
|
|
|
|
Alias,
|
|
|
|
AuthorizedAddress,
|
|
|
|
IgnoredEmail,
|
|
|
|
EmailLog,
|
|
|
|
Notification,
|
2022-04-06 12:51:04 +02:00
|
|
|
Contact,
|
|
|
|
SentAlert,
|
2022-03-21 18:33:18 +01:00
|
|
|
)
|
2022-01-04 18:06:08 +01:00
|
|
|
from email_handler import (
|
|
|
|
get_mailbox_from_mail_from,
|
|
|
|
should_ignore,
|
|
|
|
is_automatic_out_of_office,
|
|
|
|
)
|
2022-04-15 16:59:44 +02:00
|
|
|
from tests.utils import load_eml_file, create_new_user
|
2020-09-28 17:41:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_get_mailbox_from_mail_from(flask_client):
|
2022-04-15 16:59:44 +02:00
|
|
|
user = create_new_user()
|
2020-09-28 17:41:16 +02:00
|
|
|
alias = Alias.create(
|
|
|
|
user_id=user.id,
|
|
|
|
email="first@d1.test",
|
|
|
|
mailbox_id=user.default_mailbox_id,
|
|
|
|
commit=True,
|
|
|
|
)
|
|
|
|
|
2022-04-15 16:59:44 +02:00
|
|
|
mb = get_mailbox_from_mail_from(user.email, alias)
|
|
|
|
assert mb.email == user.email
|
2020-09-28 17:41:16 +02:00
|
|
|
|
|
|
|
mb = get_mailbox_from_mail_from("unauthorized@gmail.com", alias)
|
|
|
|
assert mb is None
|
|
|
|
|
|
|
|
# authorized address
|
|
|
|
AuthorizedAddress.create(
|
|
|
|
user_id=user.id,
|
|
|
|
mailbox_id=user.default_mailbox_id,
|
|
|
|
email="unauthorized@gmail.com",
|
|
|
|
commit=True,
|
|
|
|
)
|
|
|
|
mb = get_mailbox_from_mail_from("unauthorized@gmail.com", alias)
|
2022-04-15 16:59:44 +02:00
|
|
|
assert mb.email == user.email
|
2021-06-22 17:52:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_should_ignore(flask_client):
|
|
|
|
assert should_ignore("mail_from", []) is False
|
|
|
|
|
|
|
|
assert not should_ignore("mail_from", ["rcpt_to"])
|
|
|
|
IgnoredEmail.create(mail_from="mail_from", rcpt_to="rcpt_to", commit=True)
|
|
|
|
assert should_ignore("mail_from", ["rcpt_to"])
|
2022-01-04 18:06:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_is_automatic_out_of_office():
|
|
|
|
msg = EmailMessage()
|
|
|
|
assert not is_automatic_out_of_office(msg)
|
|
|
|
|
2022-01-05 15:21:54 +01:00
|
|
|
msg[headers.AUTO_SUBMITTED] = "auto-replied"
|
2022-01-04 18:06:08 +01:00
|
|
|
assert is_automatic_out_of_office(msg)
|
|
|
|
|
2022-01-05 15:21:54 +01:00
|
|
|
del msg[headers.AUTO_SUBMITTED]
|
2022-01-04 18:06:08 +01:00
|
|
|
assert not is_automatic_out_of_office(msg)
|
|
|
|
|
2022-01-05 15:21:54 +01:00
|
|
|
msg[headers.AUTO_SUBMITTED] = "auto-generated"
|
2022-01-04 18:06:08 +01:00
|
|
|
assert is_automatic_out_of_office(msg)
|
2022-03-17 19:03:36 +01:00
|
|
|
|
2022-03-17 21:36:25 +01:00
|
|
|
|
2022-04-06 12:51:04 +02:00
|
|
|
def test_dmarc_forward_quarantine(flask_client):
|
2022-04-15 16:59:44 +02:00
|
|
|
user = create_new_user()
|
2022-03-21 12:03:11 +01:00
|
|
|
alias = Alias.create_new_random(user)
|
2022-03-21 12:31:25 +01:00
|
|
|
msg = load_eml_file("dmarc_quarantine.eml", {"alias_email": alias.email})
|
2022-03-18 15:44:07 +01:00
|
|
|
envelope = Envelope()
|
|
|
|
envelope.mail_from = msg["from"]
|
|
|
|
envelope.rcpt_tos = [msg["to"]]
|
|
|
|
result = email_handler.handle(envelope, msg)
|
2022-03-22 17:44:08 +01:00
|
|
|
assert result == status.E215
|
2022-03-18 15:44:07 +01:00
|
|
|
email_logs = (
|
|
|
|
EmailLog.filter_by(user_id=user.id, alias_id=alias.id)
|
|
|
|
.order_by(EmailLog.id.desc())
|
|
|
|
.all()
|
|
|
|
)
|
|
|
|
assert len(email_logs) == 1
|
|
|
|
email_log = email_logs[0]
|
|
|
|
assert email_log.blocked
|
|
|
|
assert email_log.refused_email_id
|
2022-03-21 18:33:18 +01:00
|
|
|
notifications = Notification.filter_by(user_id=user.id).all()
|
|
|
|
assert len(notifications) == 1
|
|
|
|
assert f"{alias.email} has a new mail in quarantine" == notifications[0].title
|
2022-03-21 17:38:41 +01:00
|
|
|
|
|
|
|
|
2022-04-08 11:28:14 +02:00
|
|
|
def test_gmail_dmarc_softfail(flask_client):
|
2022-04-15 16:59:44 +02:00
|
|
|
user = create_new_user()
|
2022-04-08 11:28:14 +02:00
|
|
|
alias = Alias.create_new_random(user)
|
|
|
|
msg = load_eml_file("dmarc_gmail_softfail.eml", {"alias_email": alias.email})
|
|
|
|
envelope = Envelope()
|
|
|
|
envelope.mail_from = msg["from"]
|
|
|
|
envelope.rcpt_tos = [msg["to"]]
|
|
|
|
result = email_handler.handle(envelope, msg)
|
|
|
|
assert result == status.E200
|
2022-04-11 09:28:57 +02:00
|
|
|
# Enable when we can verify that the actual message sent has this content
|
|
|
|
# payload = msg.get_payload()
|
|
|
|
# assert payload.find("failed anti-phishing checks") > -1
|
2022-03-29 15:09:10 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_prevent_5xx_from_spf(flask_client):
|
2022-04-15 16:59:44 +02:00
|
|
|
user = create_new_user()
|
2022-03-29 15:09:10 +02:00
|
|
|
alias = Alias.create_new_random(user)
|
|
|
|
msg = load_eml_file(
|
|
|
|
"5xx_overwrite_spf.eml",
|
|
|
|
{"alias_email": alias.email, "spf_result": "R_SPF_FAIL"},
|
|
|
|
)
|
|
|
|
envelope = Envelope()
|
|
|
|
envelope.mail_from = BOUNCE_EMAIL.format(999999999999999999)
|
|
|
|
envelope.rcpt_tos = [msg["to"]]
|
|
|
|
result = email_handler.MailHandler()._handle(envelope, msg)
|
|
|
|
assert result == status.E216
|
|
|
|
|
|
|
|
|
|
|
|
def test_preserve_5xx_with_valid_spf(flask_client):
|
2022-04-15 16:59:44 +02:00
|
|
|
user = create_new_user()
|
2022-03-29 15:09:10 +02:00
|
|
|
alias = Alias.create_new_random(user)
|
|
|
|
msg = load_eml_file(
|
|
|
|
"5xx_overwrite_spf.eml",
|
|
|
|
{"alias_email": alias.email, "spf_result": "R_SPF_ALLOW"},
|
|
|
|
)
|
|
|
|
envelope = Envelope()
|
|
|
|
envelope.mail_from = BOUNCE_EMAIL.format(999999999999999999)
|
|
|
|
envelope.rcpt_tos = [msg["to"]]
|
|
|
|
result = email_handler.MailHandler()._handle(envelope, msg)
|
|
|
|
assert result == status.E512
|
2022-03-29 15:59:35 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_preserve_5xx_with_no_header(flask_client):
|
2022-04-15 16:59:44 +02:00
|
|
|
user = create_new_user()
|
2022-03-29 15:59:35 +02:00
|
|
|
alias = Alias.create_new_random(user)
|
|
|
|
msg = load_eml_file(
|
|
|
|
"no_spamd_header.eml",
|
|
|
|
{"alias_email": alias.email},
|
|
|
|
)
|
|
|
|
envelope = Envelope()
|
|
|
|
envelope.mail_from = BOUNCE_EMAIL.format(999999999999999999)
|
|
|
|
envelope.rcpt_tos = [msg["to"]]
|
|
|
|
result = email_handler.MailHandler()._handle(envelope, msg)
|
|
|
|
assert result == status.E512
|
2022-04-06 12:51:04 +02:00
|
|
|
|
|
|
|
|
|
|
|
def generate_dmarc_result() -> List:
|
|
|
|
return ["DMARC_POLICY_QUARANTINE", "DMARC_POLICY_REJECT", "DMARC_POLICY_SOFTFAIL"]
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("dmarc_result", generate_dmarc_result())
|
2022-04-06 17:07:36 +02:00
|
|
|
def test_dmarc_reply_quarantine(flask_client, dmarc_result):
|
2022-04-15 16:59:44 +02:00
|
|
|
user = create_new_user()
|
2022-04-06 12:51:04 +02:00
|
|
|
alias = Alias.create_new_random(user)
|
|
|
|
Session.commit()
|
|
|
|
contact = Contact.create(
|
|
|
|
user_id=alias.user_id,
|
|
|
|
alias_id=alias.id,
|
|
|
|
website_email="random-{}@nowhere.net".format(int(random.random())),
|
|
|
|
name="Name {}".format(int(random.random())),
|
|
|
|
reply_email="random-{}@{}".format(random.random(), EMAIL_DOMAIN),
|
|
|
|
)
|
2022-04-06 17:07:36 +02:00
|
|
|
Session.commit()
|
2022-04-06 12:51:04 +02:00
|
|
|
msg = load_eml_file(
|
|
|
|
"dmarc_reply_check.eml",
|
|
|
|
{
|
|
|
|
"alias_email": alias.email,
|
|
|
|
"contact_email": contact.reply_email,
|
|
|
|
"dmarc_result": dmarc_result,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
envelope = Envelope()
|
|
|
|
envelope.mail_from = msg["from"]
|
|
|
|
envelope.rcpt_tos = [msg["to"]]
|
|
|
|
result = email_handler.handle(envelope, msg)
|
|
|
|
assert result == status.E215
|
|
|
|
alerts = SentAlert.filter_by(
|
|
|
|
user_id=user.id, alert_type=ALERT_DMARC_FAILED_REPLY_PHASE
|
|
|
|
).all()
|
|
|
|
assert len(alerts) == 1
|
2022-04-15 10:16:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_add_alias_to_header_if_needed():
|
|
|
|
msg = EmailMessage()
|
2022-04-15 17:06:00 +02:00
|
|
|
create_new_user()
|
2022-04-15 10:16:03 +02:00
|
|
|
alias = Alias.first()
|
|
|
|
|
|
|
|
assert msg[headers.TO] is None
|
|
|
|
|
|
|
|
email_handler.add_alias_to_header_if_needed(msg, alias)
|
|
|
|
|
|
|
|
assert msg[headers.TO] == alias.email
|