2022-04-06 12:51:04 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2022-04-14 09:23:49 +02:00
|
|
|
{% call text() %}
|
|
|
|
<h1>
|
|
|
|
Unauthorized attempt to send an email to {{ contact.email }} from your alias <b>{{ alias.email }}</b> using
|
|
|
|
<b>{{ sender }}</b> has been blocked.
|
|
|
|
</h1>
|
|
|
|
{% endcall %}
|
2022-04-06 12:51:04 +02:00
|
|
|
|
2022-04-14 09:23:49 +02:00
|
|
|
{% call text() %}
|
|
|
|
To protect against <b>email spoofing</b>, only your mailbox can send emails on behalf of your alias.
|
|
|
|
SimpleLogin also refuses emails that claim to come from your mailbox but fail DMARC.
|
|
|
|
{% endcall %}
|
2022-04-06 12:51:04 +02:00
|
|
|
|
2022-04-14 09:23:49 +02:00
|
|
|
{% call text() %}
|
|
|
|
Best, <br/>
|
|
|
|
SimpleLogin Team.
|
|
|
|
{% endcall %}
|
2022-04-06 12:51:04 +02:00
|
|
|
{% endblock %}
|
|
|
|
|