{% 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 contact = email_log.contact %} {% set alias = contact.alias %}
Sent {{ refused_email.created_at | dt }}
{% if email_log.is_reply %} From: {{ alias.email }}
To: {{ contact.website_email }} {% else %} From: {{ contact.website_email }}
To: {{ alias.email }} Disable Alias {% endif %} {% 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 email client
{% endif %}
{% endfor %}
{% endblock %}