2020-05-09 22:58:27 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2020-05-10 10:37:56 +02:00
|
|
|
|
2020-05-09 22:58:27 +02:00
|
|
|
{% call text() %}
|
2022-06-29 11:28:26 +02:00
|
|
|
<h1>
|
|
|
|
Attempt to send an email from your alias <b>{{ alias }}</b> from an unknown IP address
|
|
|
|
</h1>
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{% call text() %}
|
|
|
|
We have recorded an attempt to send the following email from your alias <b>{{ alias }}</b> from an unknown IP
|
|
|
|
address
|
|
|
|
<b>{{ ip }}</b>.
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +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 %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +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 %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{% call text() %}
|
|
|
|
However you can turn off this option by going to {{ mailbox_url }}.
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{% call text() %}
|
|
|
|
Please only turn this protection off this if you know what you're doing :).
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{{ render_text('Thanks,
|
|
|
|
<br />
|
|
|
|
SimpleLogin Team.') }}
|
2020-05-09 22:58:27 +02:00
|
|
|
{% endblock %}
|