{% extends "base.html" %} {% block title %}File Areas - Admin{% endblock %} {% block content %}

File Areas (Admin)

Bulk Import (Backbone File)
{% set binkp_nets = networks|selectattr('network_type', 'equalto', 'binkp')|list %} {% if binkp_nets %}
FileFix — Subscribe/Unsubscribe to All File Areas (per Network)

Sends a FileFix +ALL netmail to the hub asking it to feed every file echo it carries, and flips the local subscribed flag on every FileArea row for this network. Run Bulk Import first if your local list is empty.

{% for net in binkp_nets %}
{{ net.name }}
{{ net.hub_address or '(no hub)' }}
{% endfor %}
{% endif %}
Create Area
{% if areas %} {% for fa in areas %}
{{ fa.tag }}
{# Nodelist auto-import. When checked, TICs landing in this area are unwrapped and the nodelist text is imported into the Nodelist table for /nodelist/ browsing — tagged by domain. #}
Browse
{% endfor %} {% else %}
No file areas configured. Create one above or wait for the first inbound TIC.
{% endif %}
{% endblock %}