A Delta Chat bot that emulates a ntfy.sh backend to broadcast notifications from HTTP POST requests to Delta Chat users and groups.
  • Python 97.6%
  • Shell 2%
  • Dockerfile 0.4%
Find a file
2026-05-13 00:22:13 +01:00
.github/workflows chore: add ntfy changelog workflow 2026-04-29 21:47:31 +01:00
.pi feat: add multi-transport support with automated failover and tracking statistics 2026-05-02 20:21:52 +01:00
.env.example Switch to .env for local configuration to avoid pull conflicts 2026-04-28 11:30:14 +01:00
.gitignore Switch to .env for local configuration to avoid pull conflicts 2026-04-28 11:30:14 +01:00
apple-touch-icon.png feat: add favicon and web manifest assets 2026-04-28 00:47:03 +01:00
bot.py refactor: improve self-fingerprint detection by matching contact encryption info against configured bot addresses 2026-05-07 13:41:34 +01:00
Caddyfile Add Caddyfile example and update docker-compose 2026-04-27 21:02:40 +01:00
CHANGELOG.md feat: add multi-transport support with automated failover and tracking statistics 2026-05-02 20:21:52 +01:00
database.py feat: implement cryptographic fingerprint verification for bot administrator authentication 2026-05-02 20:32:04 +01:00
docker-compose.yml Switch to .env for local configuration to avoid pull conflicts 2026-04-28 11:30:14 +01:00
Dockerfile Default to 'serve' command if no args provided 2026-04-27 21:15:08 +01:00
favicon-96x96.png feat: add favicon and web manifest assets 2026-04-28 00:47:03 +01:00
favicon.ico feat: add favicon and web manifest assets 2026-04-28 00:47:03 +01:00
favicon.svg feat: add favicon and web manifest assets 2026-04-28 00:47:03 +01:00
icon.png chore: replace logo.png with icon.png 2026-04-27 22:40:14 +01:00
README.md feat: add multi-transport support with automated failover and tracking statistics 2026-05-02 20:21:52 +01:00
requirements.txt Add support for header aliases, tags and emojis 2026-04-27 23:15:54 +01:00
set_admin.py refactor: migrate admin configuration management from bot command to external script 2026-05-02 23:25:06 +01:00
site.webmanifest feat: add favicon and web manifest assets 2026-04-28 00:47:03 +01:00
update.sh feat: add fallback logic to update script to fetch from backup remote if GitHub is unreachable 2026-05-13 00:22:13 +01:00
web-app-manifest-192x192.png feat: add favicon and web manifest assets 2026-04-28 00:47:03 +01:00
web-app-manifest-512x512.png feat: add favicon and web manifest assets 2026-04-28 00:47:03 +01:00

Delta Chat Ntfy Bot

A bot for Delta Chat that emulates the backend of ntfy.sh and broadcasts HTTP POST requests to subscribed Delta Chat users/groups.

Usage

Start the bot. Add it to Delta Chat. Message the bot:

  • /initadmin to claim bot ownership
  • /url https://ntfy.gluek.info to set the bot's public URL (admin only)
  • /sub mytopic to subscribe to the topic "mytopic"
  • /unsub mytopic to unsubscribe
  • /list to list your subscribed topics
  • /last to see the last 5 notifications from your subscribed topics
  • /stats to see the number of notifications received in the last 24 hours
  • /transports to show configured mail relays and statistics (admin only)
  • /help to see all available commands

API Subscription (JSON Stream)

The bot supports the ntfy JSON stream API for programmatic subscriptions. You can use this to integrate with automated agents or scripts.

# Fetch all cached messages and stream new ones
curl -s "https://ntfy.gluek.info/mytopic/json?since=all"

# Only fetch historical messages, then disconnect
curl -s "https://ntfy.gluek.info/mytopic/json?since=all&poll=1"

# Fetch messages from the last 10 minutes (also supports s, h or unix timestamps)
curl -s "https://ntfy.gluek.info/mytopic/json?since=10m"

Sending notifications

Use curl or any ntfy client and point it to your bot's web server URL.

# Basic message
curl -d 'Backup successful 😀' https://ntfy.gluek.info/mytopic

# With Title and Priority
curl -H 'Title: Backup Status' -H 'Priority: high' -d 'Backup successful 😀' https://ntfy.gluek.info/mytopic

The bot supports the following ntfy Priority values:

  • 5, max, urgent: 🔴
  • 4, high: 🟠
  • 3, default: 🟢
  • 2, low: 🔵
  • 1, min:

Advanced Features

  • Header Aliases: Use t/ti for Title, p/prio for Priority, ta/tag for Tags.
  • Tags & Emojis 🥳: Add emojis to your messages using the Tags header (e.g., Tags: warning,skull). Non-emoji tags are appended to the message text.
  • Click Actions 🔗: Use the Click header to add a clickable link to your notification.
  • Attachments 📎:
    • External URL: Use Attach: http://... to have the bot download and send a file to the chat.
    • Direct Upload: Use curl -T file.jpg -H 'Filename: file.jpg' to upload a file directly as the message body.
  • Group Support 👥: Add the bot to any group and use /sub <topic> inside the group. The bot will appear to send messages on behalf of the topic (e.g., as #topic) using the override_sender_name feature.

Testing Examples

Use your actual bot URL: https://ntfy.gluek.info.

# 1. Basic message with aliases
curl -H 'ti: Alert' -H 'p: 5' -d 'Critical error' https://ntfy.gluek.info/test

# 2. Tags and Emojis
curl -H 'ta: warning,skull,fire' -d 'Something is burning!' https://ntfy.gluek.info/test

# 3. Clickable Link
curl -H 'Click: https://github.com' -d 'Check the repo' https://ntfy.gluek.info/test

# 4. External Attachment (URL)
curl -H 'Attach: https://github.com/fluidicon.png' -d 'New avatar attached' https://ntfy.gluek.info/test

# 5. Direct File Upload
curl -T my_photo.jpg -H 'Filename: photo.jpg' https://ntfy.gluek.info/test

# 6. The 'Ultimate' Test (Combined)
curl -X POST https://ntfy.gluek.info/test \
  -H 'Title: System Status' \
  -H 'Tags: tada,rocket,check' \
  -H 'Click: https://status.example.com' \
  -H 'Attach: https://www.python.org/static/img/python-logo.png' \
  -d 'Everything is working perfectly! Check the attached logo and link.'

Account Setup

Before running the bot, you must initialize at least one Delta Chat account.

Manual Setup (Custom Email/Password) If you want to use a specific email account:

docker compose run --rm ntfy_bot python bot.py init bot@example.com "YOUR_PASSWORD"

Automatic Setup (Chatmail) If you want to use a chatmail server (which doesn't require a pre-existing password for new accounts), choose a desired address at a chatmail domain (e.g., nine.testrun.org):

docker compose run --rm ntfy_bot python bot.py init mybot@nine.testrun.org

Once configured, you can start the bot normally with docker compose up -d.

Backup Relays (Multi-transport) You can add secondary mail servers to ensure the bot remains reachable if your primary server goes down:

# Add a backup chatmail via URI
docker compose run --rm ntfy_bot python bot.py init transport DCACCOUNT:bot@arcanechat.me

# Add a backup via email credentials
docker compose run --rm ntfy_bot python bot.py init transport backup@example.com "PASSWORD"

You can also manage transports directly in Delta Chat using /addtransport and /transports.

Running the Bot

  1. Clone the repository
  2. Initialize the account as described in the Account Setup section above.
  3. Start the bot: docker compose up -d
  4. Message the bot in Delta Chat and use /initadmin to claim ownership.

Running Manually

  1. Create a Python virtual environment: python3 -m venv venv
  2. Activate it: source venv/bin/activate
  3. Install requirements: pip install -r requirements.txt
  4. Set environment variables if needed (e.g., PORT=8080, DB_PATH=ntfy.db)
  5. Run the bot: python bot.py

Reverse Proxy (Caddy)

For production use with HTTPS, you can use the provided Caddyfile example. A caddy service is also included in docker-compose.yml (commented out by default).

To use it:

  1. Edit Caddyfile with your domain name.
  2. Uncomment the caddy service in docker-compose.yml.
  3. Run docker compose up -d.