{% extends "base.html" %} {% block title %}Self-Registration Status — Admin{% endblock %} {% block content %}

Federation Self-Registration

Status of THIS BBS's registration against the upstream federation hub.

Configuration
Hub URL
{{ hub or '(not set)' }}
Self-register enabled
{% if enabled %} on {% else %} off — set REGISTRY_SELF_REGISTER=true {% endif %}
Our host (BBS_DOMAIN)
{{ meta.host or '(blank)' }}
Our name (BBS_NAME)
{{ meta.name }}
Sysop
{{ meta.sysop or '(blank)' }}
Location
{{ meta.location or '(blank)' }}
Contact email
{{ meta.contact_email or '(blank — required!)' }}
Software / version
{{ meta.software }} {{ meta.software_version }}
MSP / SYSTAT ports
{{ meta.msp_port }} / {{ meta.systat_port }}
Last Hub Response
{% if not state %}

We have not yet contacted the hub. The daemon registers automatically on next tick; click below to force it now.

{% else %} {% if state.last_register_at %}

Last register: {{ state.last_register_at }}

{% endif %} {% if state.last_heartbeat_at %}

Last heartbeat: {{ state.last_heartbeat_at }}

{% endif %} {% set resp = state.last_response or {} %} {% if resp.status %}

Hub status: {% if resp.status == 'listed' %} listed ✓ {% elif resp.status == 'pending_verification' %} awaiting email verify {% elif resp.status == 'pending_approval' %} awaiting hub sysop approval {% else %} {{ resp.status }} {% endif %}

{% endif %} {% if state.verify_url %}
Action required: click this verify link to confirm your contact email — until you do, your BBS won't appear in anetbbs.lst.
{{ state.verify_url }}
{% endif %} {% if resp.message %}

{{ resp.message }}

{% endif %} {% endif %}
{% if csrf_token is defined %}{% endif %}
← Back to Registry
{% endblock %}