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

Inter-BBS Instant Messages

Real-time messages received from other BBSes via MSP (RFC 1312).

BBS Directory Send IM
{% if not messages %}
No instant messages yet. Other Synchronet/anetbbs sysops can ping you on TCP port 18 — make sure the port is reachable.
{% else %} {% for m in messages %} {% endfor %}
From Host Message Received
{{ m.sender_label or '(anon)' }} {{ m.sender_host }}
{{ m.body }}
{{ m.received_at.strftime('%Y-%m-%d %H:%M') }} {# Reply: pre-fill the send form with the original sender + host. #} {% set reply_to = (m.sender_label or '').split('@')[0] %}
{% endif %}
{% endblock %}