How do I send a Discord message from Telegram Crosscontext messaging denied

OpenClaw blocks cross‑provider messaging by default. If a tool call is bound to Telegram, it won’t send to Discord unless you explicitly allow it.
Enable cross‑provider messaging for the agent:
{
agents: {
defaults: {
tools: {
message: {
crossContext: {
allowAcrossProviders: true,
marker: { enabled: true, prefix: "[from {channel}] " },
},
},
},
},
},
}
Restart the gateway after editing config. If you only want this for a single agent, set it under agents.list[].tools.message instead.