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

Quarantine & Bounce

This page shows all emails that are either refused by your mailbox (bounced) or detected as spam/phishing (quarantine) via our anti-phishing program ↗
{% if email_logs|length == 0 %}
You don't have any emails in Quarantine/Bounce.
{% 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.bounced %} Bounce {% else %} Quarantine {% endif %}
{% 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 %}