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

Echo Areas

Dashboard
Bad Areas Bulk Import Add Area
{% set binkp_nets = [] %} {% set qwk_nets = [] %} {% for n in all_networks %} {% if n.is_active and n.network_type == 'binkp' %}{% set _ = binkp_nets.append(n) %}{% endif %} {% if n.is_active and n.network_type == 'qwk' %}{% set _ = qwk_nets.append(n) %}{% endif %} {% endfor %} {% if binkp_nets %}
Send AreaFix Request to a FidoNet Hub

Subscribing locally only tells us to keep messages. AreaFix tells the hub to actually send them. Tags separated by spaces or commas.

{% for net in binkp_nets %}
{{ net.name }}
{{ net.hub_address or '(no hub)' }}
Custom AreaFix command for {{ net.name }} (advanced — type the netmail body verbatim)
One AreaFix directive per line. Subject auto-set to your AreaFix password. Examples: %RESCAN D=3650 (full rescan, last 3650 days), %RESCAN TAG R=500 (last 500 in one area), %QUERY, %COMPRESS GZIP.
{% endfor %}
{% endif %} {% if qwk_nets %}
Quick-Add QWK Areas (by Conference Number)

Pre-create areas for specific QWK conference numbers (e.g. DOVE-Net's 2001=General, 2006=Programming). The tag is auto-formatted as QWK_<num>. Once created, incoming messages with that conf# will land here. Format: one entry per line — NUM Name.

{% for net in qwk_nets %}
{{ net.name }}
{% endfor %}
{% endif %} {% if areas %}
{% for area in areas %} {% endfor %}
NetworkTagName MessagesLast Activity StatusActions
{{ area.network.name }} {{ area.tag }} {{ area.name }} {{ area.total_messages or 0 }} {{ area.last_message_at.strftime('%Y-%m-%d') if area.last_message_at else '—' }} {% if area.is_subscribed %}✓ Subscribed {% else %}— Unsubscribed{% endif %} {% if not area.is_active %}Inactive{% endif %}
{% if area.network and area.network.network_type == 'binkp' and area.is_subscribed %}
{% endif %}
{% else %}

No echo areas configured yet.

Add First Area
{% endif %} {% endblock %}