{% extends "base.html" %} {% block title %}AreaFix Log — {{ config.BBS_NAME }}{% endblock %} {% block content %}
Audit trail of AreaFix (echomail) and FileFix (file-echo) subscription/unsubscription requests — both inbound (other nodes asking us) and outbound (us asking a hub).
| 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] }} |