{% if error %}
Error
{{ error }}
{% elif rows %}
{% if dry_run %}
Preview — no messages deleted
Found {{ total }} message{{ 's' if total != 1 else '' }} across {{ rows | length }} sender{{ 's' if rows | length != 1 else '' }} that match the purge rules.
{% else %}
Purge complete
Deleted {{ total }} message{{ 's' if total != 1 else '' }} across {{ rows | length }} sender{{ 's' if rows | length != 1 else '' }}.
{% endif %}
{% for row in rows %} {% endfor %}
Sender Messages Sample subjects
{{ row.address }}
{% if row.label != row.address %}
{{ row.label }}
{% endif %}
{% if dry_run %}~{% endif %}{{ row.count }} {% for s in row.subjects %}
{{ s }}
{% else %} — {% endfor %}
{% if dry_run %}
This was a preview. Click Execute Purge to permanently delete these messages.
{% endif %}
{% else %}
Nothing to purge
No messages matched the purge rules in the current mailbox.
{% endif %}