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

Send Inter-BBS Instant Message

Real-time delivery to a user on another BBS over MSP (TCP port 18). The remote BBS must be running Synchronet (sbbsimsg) or another compatible MSP server. There is no acknowledgement — "delivered" means the bytes hit the wire and the remote did not reject.

{{ form.hidden_tag() }}
{{ form.recipient.label(class="form-label") }} {{ form.recipient(class="form-control", placeholder="stingray@a-net-online.lol") }}
Tip: you can paste user@host here and leave the Host field blank — we'll split it for you.
{{ form.host.label(class="form-label") }} {{ form.host(class="form-control", placeholder="bbs.example.com (only if not in Recipient)") }}
{{ form.port.label(class="form-label") }} {{ form.port(class="form-control") }}
{{ form.message.label(class="form-label") }} {{ form.message(class="form-control", rows=8, style="font-family:monospace;") }}
8 KB max per RFC 1312.
Cancel
{% endblock %}