{% extends "base.html" %} {% block title %}AreaFix Log — {{ config.BBS_NAME }}{% endblock %} {% block content %}

AreaFix Log

Audit trail of AreaFix (echomail) and FileFix (file-echo) subscription/unsubscription requests — both inbound (other nodes asking us) and outbound (us asking a hub).

Echomail Dashboard
{% if not rows %}
No AreaFix activity yet. Use the Send AreaFix Request panel on the Areas page to trigger one.
{% else %} {% for row in rows %} {% endfor %}
Time Bot Network From Type Tags Result Response
{{ row.created_at|eastern('%Y-%m-%d %H:%M', '') }} {% if row.bot == 'filefix' %} FileFix {% else %} AreaFix {% endif %} {{ networks[row.network_id].name if row.network_id in networks else '?' }} {{ row.from_address or '' }} {{ row.request_type }} {{ row.area_tags or '' }} {% if row.success %} OK {% else %} FAIL {% endif %}
{{ (row.response or '')[:300] }}
{% if pagination and pagination.pages > 1 %} {% endif %} {% endif %}
{% endblock %}