mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
d415974e3b
* remove TO header if it's set to "undisclosed-recipients:;" more info on https://www.rfc-editor.org/rfc/rfc4356.txt * remove unnecessary indentation character in plain text email
11 lines
381 B
Django/Jinja
11 lines
381 B
Django/Jinja
{% extends "base.txt.jinja2" %}
|
|
|
|
{% block content %}
|
|
Unauthorized attempt to send an email to {{ contact.email }} from your alias {{ alias.email }} using
|
|
{{ sender }} has been blocked.
|
|
|
|
To protect against email spoofing, 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.
|
|
{% endblock %}
|
|
|