2020-02-22 14:57:19 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2020-12-16 18:48:20 +01:00
|
|
|
{% call text() %}
|
|
|
|
<h1>
|
|
|
|
An email sent to your alias {{ alias.email }} from {{ website_email }} was <b>bounced</b> by your mailbox
|
|
|
|
{{ mailbox_email }}
|
|
|
|
</h1>
|
|
|
|
{% endcall %}
|
2020-02-22 14:57:19 +01:00
|
|
|
|
2020-12-16 18:48:20 +01:00
|
|
|
{% call text() %}
|
|
|
|
This is usually because your mailbox service thinks the email is a <b>spam</b>.
|
|
|
|
{% endcall %}
|
2020-03-14 16:34:23 +01:00
|
|
|
|
2020-12-16 18:48:20 +01:00
|
|
|
{{ render_button("View the bounced email", refused_email_url) }}
|
2020-02-22 14:57:19 +01:00
|
|
|
|
2020-03-30 21:45:43 +02:00
|
|
|
{{ render_text('The email is automatically deleted in 7 days.') }}
|
|
|
|
|
2020-12-16 18:48:20 +01:00
|
|
|
{% call text() %}
|
|
|
|
Please consider the following options: <br>
|
2020-02-22 14:57:19 +01:00
|
|
|
|
2020-12-16 18:48:20 +01:00
|
|
|
<ol>
|
|
|
|
<li>If the email is not spam at all, you can create a <b>filter</b> to explicitly allow this email
|
|
|
|
or simply all emails from SimpleLogin. <br>
|
|
|
|
How to create the filter depends on your mailbox service.
|
|
|
|
</li>
|
2020-02-22 14:57:19 +01:00
|
|
|
|
2020-12-16 18:48:20 +01:00
|
|
|
<li>
|
|
|
|
If this email is indeed a spam, it means your alias {{alias.email}} is now in the hands of a spammer. <br>
|
|
|
|
You should <b>disable</b> the alias immediately. <br>
|
|
|
|
We'll <b>automatically</b> disable this alias when too many emails sent to it are bounced.
|
|
|
|
</li>
|
|
|
|
</ol>
|
|
|
|
{% endcall %}
|
2020-02-22 14:57:19 +01:00
|
|
|
|
|
|
|
{{ render_button("Disable alias", disable_alias_link) }}
|
|
|
|
|
|
|
|
{{ render_text('Thanks, <br />SimpleLogin Team.') }}
|
|
|
|
{{ raw_url(disable_alias_link) }}
|
|
|
|
{% endblock %}
|