2022-06-29 11:28:26 +02:00
|
|
|
{% extends "default.html" %}
|
2020-03-14 16:10:09 +01:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{% block title %}Quarantine{% endblock %}
|
2020-03-14 16:10:09 +01:00
|
|
|
{% set active_page = "setting" %}
|
|
|
|
{% block default_content %}
|
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
<div class="col">
|
|
|
|
<h1 class="h3 mb-5">Quarantine</h1>
|
2020-03-15 18:06:57 +01:00
|
|
|
<div class="alert alert-info">
|
2020-03-17 09:43:12 +01:00
|
|
|
This page shows all emails that are potentially spams or malicious.
|
2022-06-29 11:28:26 +02:00
|
|
|
Usually these emails have been <b>refused</b> (or bounced) by your mailbox.
|
|
|
|
<br />
|
2020-03-17 09:43:12 +01:00
|
|
|
- If an email is indeed spam, this means the alias is now in the hands of a spammer,
|
2022-06-29 11:28:26 +02:00
|
|
|
in this case you should <b>disable</b> this alias.
|
|
|
|
<br />
|
|
|
|
- Otherwise, you should create a <b>filter</b> to avoid your email provider from blocking these emails.
|
|
|
|
<br />
|
|
|
|
<a href="mailto:hi@simplelogin.io">Contact us↗</a>
|
|
|
|
if you need any help.
|
2020-03-15 18:06:57 +01:00
|
|
|
</div>
|
2022-06-29 11:28:26 +02:00
|
|
|
{% if email_logs|length == 0 %}<div class="my-4 p-4 card">You don't have any emails in Quarantine.</div>{% endif %}
|
2020-03-30 21:46:52 +02:00
|
|
|
{% for email_log in email_logs %}
|
2022-06-29 11:28:26 +02:00
|
|
|
|
2020-03-30 21:46:52 +02:00
|
|
|
{% set refused_email = email_log.refused_email %}
|
2020-08-15 16:56:16 +02:00
|
|
|
{% set contact = email_log.contact %}
|
|
|
|
{% set alias = contact.alias %}
|
2022-06-29 11:28:26 +02:00
|
|
|
<div class="card p-4 shadow-sm {% if email_log.id == highlight_id %} highlight-row{% endif %}">
|
|
|
|
<div class="small-text">Sent {{ refused_email.created_at | dt }}</div>
|
2020-08-15 16:58:11 +02:00
|
|
|
{% if email_log.is_reply %}
|
2022-06-29 11:28:26 +02:00
|
|
|
|
|
|
|
From: {{ alias.email }}
|
|
|
|
<br />
|
2020-08-15 16:58:11 +02:00
|
|
|
To: {{ contact.website_email }}
|
|
|
|
{% else %}
|
2022-06-29 11:28:26 +02:00
|
|
|
From: {{ contact.website_email }}
|
|
|
|
<br />
|
2020-08-15 16:58:11 +02:00
|
|
|
<span>
|
2022-06-29 11:28:26 +02:00
|
|
|
To: {{ alias.email }}
|
|
|
|
<a href='{{ url_for("dashboard.index", highlight_alias_id=alias.id) }}'
|
|
|
|
class="btn btn-sm btn-outline-danger">
|
|
|
|
Disable Alias
|
|
|
|
</a>
|
|
|
|
</span>
|
2020-08-15 16:58:11 +02:00
|
|
|
{% endif %}
|
2020-03-15 11:14:58 +01:00
|
|
|
{% if refused_email.deleted %}
|
2022-06-29 11:28:26 +02:00
|
|
|
|
|
|
|
<div>Email deleted {{ refused_email.delete_at | dt }}</div>
|
2020-03-15 11:14:58 +01:00
|
|
|
{% else %}
|
2022-06-29 11:28:26 +02:00
|
|
|
<a href="{{ refused_email.get_url() }}" download class="mt-4">Download →</a>
|
2020-08-15 16:58:11 +02:00
|
|
|
<div class="small-text">This will download a ".eml" file that you can open in your email client</div>
|
2020-03-15 11:14:58 +01:00
|
|
|
{% endif %}
|
2020-03-14 16:10:09 +01:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2022-06-29 11:28:26 +02:00
|
|
|
{% endblock %}
|