- Python 97.6%
- Shell 2%
- Dockerfile 0.4%
| .github/workflows | ||
| .pi | ||
| .env.example | ||
| .gitignore | ||
| apple-touch-icon.png | ||
| bot.py | ||
| Caddyfile | ||
| CHANGELOG.md | ||
| database.py | ||
| docker-compose.yml | ||
| Dockerfile | ||
| favicon-96x96.png | ||
| favicon.ico | ||
| favicon.svg | ||
| icon.png | ||
| README.md | ||
| requirements.txt | ||
| set_admin.py | ||
| site.webmanifest | ||
| update.sh | ||
| web-app-manifest-192x192.png | ||
| web-app-manifest-512x512.png | ||
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:
/initadminto claim bot ownership/url https://ntfy.gluek.infoto set the bot's public URL (admin only)/sub mytopicto subscribe to the topic "mytopic"/unsub mytopicto unsubscribe/listto list your subscribed topics/lastto see the last 5 notifications from your subscribed topics/statsto see the number of notifications received in the last 24 hours/transportsto show configured mail relays and statistics (admin only)/helpto 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/tifor Title,p/priofor Priority,ta/tagfor Tags. - Tags & Emojis 🥳: Add emojis to your messages using the
Tagsheader (e.g.,Tags: warning,skull). Non-emoji tags are appended to the message text. - Click Actions 🔗: Use the
Clickheader 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.
- External URL: Use
- 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 theoverride_sender_namefeature.
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
Using Docker (Recommended)
- Clone the repository
- Initialize the account as described in the Account Setup section above.
- Start the bot:
docker compose up -d - Message the bot in Delta Chat and use
/initadminto claim ownership.
Running Manually
- Create a Python virtual environment:
python3 -m venv venv - Activate it:
source venv/bin/activate - Install requirements:
pip install -r requirements.txt - Set environment variables if needed (e.g.,
PORT=8080,DB_PATH=ntfy.db) - 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:
- Edit
Caddyfilewith your domain name. - Uncomment the
caddyservice indocker-compose.yml. - Run
docker compose up -d.