{% extends "base.html" %} {% block title %}MockPost — Apps{% endblock %} {% block content %}

Registered apps

Each app is identified by its fake credentials (bot token, SID, sk_test...). The app sends no extra headers: MockPost recognizes it from what already travels in the real protocol. Webhooks are only delivered to the matching app.

Register / update app

Per-app SMTP: set MOCKPOST_APPS='app-a:1025,app-b:1026' at startup; each port identifies its app automatically.

{% for a in apps %} {% else %} {% endfor %}
AppCredentialsCreatedActions
{{ a.name }} {% for k, v in a.creds.items() %}{{ k }}={{ v }}{% if not loop.last %}
{% endif %}{% endfor %} {% if not a.creds %}no credentials{% endif %}
{{ a.created_at }}
No apps registered.
{% endblock %}