diff --git a/templates/dashboard/refused_email.html b/templates/dashboard/refused_email.html index 24ae33ab..4dabb68c 100644 --- a/templates/dashboard/refused_email.html +++ b/templates/dashboard/refused_email.html @@ -1,22 +1,41 @@ {% extends "default.html" %} {% block title %}Quarantine{% endblock %} +{% block head %} + + +{% endblock %} {% set active_page = "setting" %} {% block default_content %}
-

Quarantine

+

Quarantine & Bounce

- This page shows all emails that are potentially spams or malicious. - Usually these emails have been refused (or bounced) by your mailbox. -
- - If an email is indeed spam, this means the alias is now in the hands of a spammer, - in this case you should disable this alias. -
- - Otherwise, you should create a filter to avoid your email provider from blocking these emails. -
- Contact us↗ - if you need any help. + This page shows all emails that are either refused by your mailbox (bounced) or detected as spams/phishing (quarantine) via our + anti-phishing program ↗ +
{% if email_logs|length == 0 %}
You don't have any emails in Quarantine.
{% endif %} {% for email_log in email_logs %} @@ -25,7 +44,15 @@ {% set contact = email_log.contact %} {% set alias = contact.alias %}
-
Sent {{ refused_email.created_at | dt }}
+
+ Sent {{ refused_email.created_at | dt }} + {% if email_log.bounced %} + + Bounce + {% else %} + Quarantine + {% endif %} +
{% if email_log.is_reply %} From: {{ alias.email }} @@ -37,16 +64,20 @@ To: {{ alias.email }} + class="text-danger small-text" + style="text-decoration: underline"> Disable Alias {% endif %} {% if refused_email.deleted %} -
Email deleted {{ refused_email.delete_at | dt }}
+
Email deleted {{ refused_email.delete_at | dt }}
{% else %} - Download → + Download →
This will download a ".eml" file that you can open in your email client
{% endif %}
diff --git a/templates/dashboard/setting.html b/templates/dashboard/setting.html index cbcae954..289bc826 100644 --- a/templates/dashboard/setting.html +++ b/templates/dashboard/setting.html @@ -587,21 +587,20 @@
- Quarantine + Quarantine & Bounces
- When an email sent to your alias is classified as spam or refused by your email provider, - it usually means your alias has been leaked to a spammer. -
- In this case SimpleLogin will keep a copy of this email (so it isn't lost) - and notify you so you can take a look at its content and take appropriate actions. + When an email is refused (or bounced) by your mailbox provider or flagged by + SimpleLogin anti-phishing program, + SimpleLogin keeps a copy of this email for 7 days so you can take a look at its content and take appropriate actions.
The emails are deleted in 7 days. - This is an exceptional case where SimpleLogin stores the email. +
+ This is an exceptional case where SimpleLogin temporarily stores the email.
- See refused emails + See quarantine & bounce emails