{% 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 the email is indeed spam, this means the alias is now in the hands of a spammer,
you should probably disable the alias.
If the email isn't spam and your mailbox refuses the email, we recommend to create a filter to avoid your mailbox provider from blocking legitimate emails. Please refer to
Setting up filter for SimpleLogin emails ↗
If the email is flagged as spam/phishing, this means that the sender explicitly states their emails should respect
DMARC (an email authentication protocol)
and any email that violates this should either be quarantined or rejected. If possible, please contact the sender
so they can update their DMARC setting or fix their SPF/DKIM that cause the DMARC failure.
Their emails are probably being rejected or end up in spam at other email providers as well.
{% 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 %}