{% extends "base.html" %} {% block title %}Bad Areas — {{ config.BBS_NAME }}{% endblock %} {% block content %}

Bad Areas

Echomail dropped on import, grouped by tag. Unknown = a tag we don't recognize at all. Unsubscribed = an area we DO carry, but aren't currently subscribed to (or have deactivated) -- mail for it is being silently dropped. Subscribe to one to start carrying it, or dismiss to ignore.

Echomail Dashboard {% if rows %}
{% if csrf_token is defined %} {% endif %}
{% endif %}
{% if not rows %}
No bad areas pending review.
{% else %} {% for row in rows %} {% endfor %}
Network Tag Reason Hits Last Seen Sample From Sample Subject Actions
{{ networks[row.network_id].name if row.network_id in networks else '?' }} {{ row.tag }} {% if row.reason == 'unsubscribed' %} Unsubscribed {% else %} Unknown {% endif %} {{ row.count }} {{ row.last_seen_at|eastern('%Y-%m-%d %H:%M', '') }} {{ row.sample_from or '' }} {{ (row.sample_subject or '')[:60] }}
{% if csrf_token is defined %} {% endif %}
{% if csrf_token is defined %} {% endif %}
{% endif %}
{% endblock %}