{% extends "base.html" %} {% block title %}{{ 'Business Groups' if tab == 'businesses' else tab | title }} — SimpleX Manager{% endblock %} {% block head %} {% endblock %} {% block content %} {% set new_label = 'User' if tab == 'users' else ('Business Group' if tab == 'businesses' else 'Bot') %} {% set page_title = 'Business Groups' if tab == 'businesses' else tab | title %}
A business group uses a business address: each customer who connects gets their own group chat (so teammates can be added). You handle those conversations here, the same way you chat in a group. Set an optional welcome message to auto-greet new customers.
| echo | Repeats every message back to the sender — handy for testing a connection end to end. |
| llm | Chat with a local or remote LLM (OpenAI-compatible, e.g. Ollama). Give it context, it replies to your messages. |
| rss | Watches an RSS/Atom feed and broadcasts new posts to a channel it creates. Subscribers join the channel; send /new for the latest. |
| broadcast | Relays messages from authorized publishers out to all of the bot's contacts. |
| support | Business inbox — auto-replies with a welcome message and collects incoming inquiries. |
| directory | Directory service for discovering and listing groups or contacts. |
| deadmans | Dead man's switch — triggers an action if expected check-ins stop arriving. |
Create a SimpleX user account to manage contacts and channels.
{% elif tab == 'businesses' %} No business groups yetCreate a business group; each customer who connects gets their own group chat.
{% else %} No bots yetBots can echo messages, broadcast to subscribers, or run automated tasks.
{% endif %}