{% extends "base.html" %} {% block title %}BBS Directory — {{ config.BBS_NAME }}{% endblock %} {% block content %}

Inter-BBS Directory

BBSes from the sbbsimsg.lst registry that participate in inter-BBS instant messaging. Click Who's online to query a remote system live, then Send IM to send a message.

Inbox {% if current_user.is_admin %}
{% endif %}
{% if self_entry and self_entry.hostname %}
Your BBS
{{ self_entry.name }}
{% if self_entry.is_listed %} Listed {% elif self_entry.is_listed is false %} Pending {% else %} Not registered {% endif %}
{{ self_entry.hostname }} — MSP {{ self_entry.msp_port }}, SYSTAT {{ self_entry.systat_port }} {% if self_entry.sysop %} · sysop {{ self_entry.sysop }}{% endif %} {% if self_entry.location %} · {{ self_entry.location }}{% endif %}
Send IM to self {% if current_user.is_admin and self_entry.is_listed is none %} Register on hub {% endif %}
{% endif %}
{% if not rows %}
Directory is empty. Click Refresh from Vertrauen to pull ftp://vert.synchro.net/sbbsimsg.lst.
{% else %} {% for r in rows %} {% endfor %}
Name Hostname Software Sysop / Location Last Seen Actions
{{ r.name }} {{ r.hostname }} {% if r.ip_address %}
{{ r.ip_address }}{% endif %}
{% if r.source == 'anetbbs' %} ANetBBS {% elif r.source == 'sbbsimsg' %} Synchronet {% else %} {{ r.software or 'unknown' }} {% endif %} {% if r.software_version %}
{{ r.software_version }}{% endif %}
{{ r.sysop or '—' }} {% if r.location %}
{{ r.location }}{% endif %}
{{ r.last_seen_at.strftime('%Y-%m-%d') if r.last_seen_at else '' }} Who's online Send IM
{% endif %}
{% endblock %}