2020-05-09 22:58:27 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2021-01-11 10:22:39 +01:00
|
|
|
{% call text() %}
|
|
|
|
<h1>
|
|
|
|
Attempt to send an email from your alias <b>{{ alias }}</b> from an unknown IP address
|
|
|
|
</h1>
|
|
|
|
{% endcall %}
|
2020-05-09 22:58:27 +02:00
|
|
|
|
|
|
|
{% call text() %}
|
2020-05-10 10:37:56 +02:00
|
|
|
We have recorded an attempt to send the following email from your alias <b>{{ alias }}</b> from an unknown IP
|
|
|
|
address
|
2020-05-09 22:58:27 +02:00
|
|
|
<b>{{ ip }}</b>.
|
|
|
|
{% endcall %}
|
|
|
|
|
2020-05-10 10:37:56 +02:00
|
|
|
{% call text() %}
|
|
|
|
- From: <b>{{ alias }}</b> <br>
|
|
|
|
- To: <b>{{ to_email }}</b> <br>
|
|
|
|
- Subject: <b>{{ subject }}</b> <br>
|
|
|
|
- Time: <b>{{ time.humanize() }}</b>
|
|
|
|
{% endcall %}
|
|
|
|
|
2020-05-09 22:58:27 +02:00
|
|
|
{% call text() %}
|
|
|
|
To prevent email-spoofing, SimpleLogin enforces the SPF (Sender Policy Framework).
|
|
|
|
Emails sent from an IP address that is <b>unknown</b> by your email service are refused by default.
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
{% call text() %}
|
|
|
|
However you can turn off this option by going to {{ mailbox_url }}.
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
{% call text() %}
|
|
|
|
Please only turn this protection off this if you know what you're doing :).
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
{{ render_text('Thanks, <br />SimpleLogin Team.') }}
|
|
|
|
{% endblock %}
|