Bug: Telegram group messages fail (resolveTelegramInboundBody error)
Version: 2026.4.20
Bot is admin in group, Privacy Mode OFF, group ID in openclaw.json under channels.telegram.groups
@mentions work fine. Regular (non-mention) group messages fail silently.
Error: resolveTelegramInboundBody in compiled telegram plugin
Config: groupPolicy: allowlist, group ID -1003957112886
#Telegram Group chat issue
1 messages Β· Page 1 of 1 (latest)
@mentions work fine is the big clue here.
That usually means Telegram transport + group allowlist are fine, and youβre hitting mention gating, not group auth.
For Telegram, these are separate:
groupPolicy: "allowlist"= which groups/senders are allowedrequireMention= whether non-mention group messages should wake the bot
By default, group replies require mention. So if you want ordinary group messages to work, set:
{
channels: {
telegram: {
groupPolicy: "allowlist",
groups: {
"-1003957112886": {
requireMention: false
}
}
}
}
}
Then restart the gateway.
Docs: