{% extends "base.html" %} {% block title %}Unclaimed Netmail — {{ config.BBS_NAME }}{% endblock %} {% block content %}

Unclaimed Netmail

Inbound netmail whose To: name/address didn't match any local user's account or AKA. Without a match here, this mail is otherwise invisible — every inbox view filters by the logged-in user's own identity. Assign it to the right user, or leave it for now.

Echomail Dashboard
{% if not rows %}
No unclaimed netmail pending review.
{% else %}
{% if csrf_token is defined %} {% endif %}
{% for row in rows %} {% endfor %}
Network From To (as received) Subject Received Assign to
{{ networks[row.network_id].name if row.network_id in networks else '?' }} {{ row.from_name }}
{{ row.from_address or '' }}
{{ row.to_name }}
{{ row.to_address or '' }}
{{ (row.subject or '')[:60] }} {{ row.received_at|eastern('%Y-%m-%d %H:%M', '') }}
{% if csrf_token is defined %} {% endif %}
{% endif %}
{% endblock %}