Telegram
Setup
- Open Telegram and message @BotFather
- Send
/newbotand follow the prompts - Copy the bot token
Configuration
{
"channels": {
"telegram": {
"enabled": true,
"token": "YOUR_BOT_TOKEN",
"allowFrom": ["YOUR_USER_ID"],
"proxy": null
}
}
}Fields
| Field | Type | Default | Description |
|---|---|---|---|
enabled | bool | false | Enable the Telegram channel |
token | string | Bot token from @BotFather | |
allowFrom | array | [] | User IDs or usernames allowed to interact |
proxy | string | null | HTTP or SOCKS5 proxy URL |
Getting your user ID
Message @userinfobot on Telegram — it replies with your numeric user ID.
Proxy support
If you’re in a region where Telegram is blocked, set a proxy:
{
"channels": {
"telegram": {
"enabled": true,
"token": "YOUR_TOKEN",
"proxy": "socks5://127.0.0.1:1080"
}
}
}Supports http://, https://, and socks5:// URLs.