The error is clear and well-documented! When you set channels.telegram.dmPolicy="open", you're telling the bot to accept DMs from anyone. For security, this requires explicitly adding "*" to the allowFrom list to confirm you want public access.
Fix: Add "*" to your Telegram allowFrom config:
{
channels: {
telegram: {
dmPolicy: "open",
allowFrom: ["*"], // β Add this line (or add "*" to existing array)
// ... your other settings
}
}
}
If you already have specific users in allowFrom, add "*" alongside them: