{% extends 'default.html' %} {% block title %} Quarantine {% endblock %} {% set active_page = "setting" %} {% block default_content %}

Quarantine

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.
{% if email_logs|length == 0 %}
You don't have any emails in Quarantine.
{% endif %} {% for email_log in email_logs %} {% set refused_email = email_log.refused_email %} {% set forward = email_log.forward %} {% set alias = forward.alias %}
Sent {{ refused_email.created_at | dt }}
From: {{ forward.website_email }}
To: {{ alias.email }} Disable Alias {% if refused_email.deleted %}
Email deleted {{ refused_email.delete_at | dt }}
{% else %} Download →
This will download a ".eml" file that you can open in your favorite email client
{% endif %}
{% endfor %}
{% endblock %}