#disable whatsapp in openclaw
1 messages ยท Page 1 of 1 (latest)
For current OpenClaw, disable the whole WhatsApp channel with:
openclaw config set channels.whatsapp.enabled false --strict-json
openclaw gateway restart
Or manually edit your config:
{
channels: {
whatsapp: {
enabled: false,
selfChatMode: true,
dmPolicy: "allowlist",
allowFrom: ["+14322962920"]
}
}
}
dmPolicy: "disabled" only disables WhatsApp DMs; enabled: false stops the channel/account from starting.
If you want to remove the config entirely instead:
openclaw channels remove --channel whatsapp --delete
Docs: https://docs.openclaw.ai/channels/whatsapp and https://docs.openclaw.ai/cli/config