mirror of
https://github.com/farcasclaudiu/openclaw.git
synced 2026-06-28 23:02:02 +03:00
docs(changelog): document Slack/Discord dmPolicy aliases
This commit is contained in:
@@ -9,6 +9,7 @@ Docs: https://docs.openclaw.ai
|
|||||||
- Sandbox: add `sandbox.browser.binds` to configure browser-container bind mounts separately from exec containers. (#16230) Thanks @seheepeak.
|
- Sandbox: add `sandbox.browser.binds` to configure browser-container bind mounts separately from exec containers. (#16230) Thanks @seheepeak.
|
||||||
- Discord: add debug logging for message routing decisions to improve `--debug` tracing. (#16202) Thanks @jayleekr.
|
- Discord: add debug logging for message routing decisions to improve `--debug` tracing. (#16202) Thanks @jayleekr.
|
||||||
- Discord: allow exec approval prompts to target channels or both DM+channel via `channels.discord.execApprovals.target`. (#16051) Thanks @leonnardo.
|
- Discord: allow exec approval prompts to target channels or both DM+channel via `channels.discord.execApprovals.target`. (#16051) Thanks @leonnardo.
|
||||||
|
- Slack/Discord: add `dmPolicy` + `allowFrom` config aliases for DM access control; legacy `dm.policy` + `dm.allowFrom` keys remain supported and `openclaw doctor --fix` can migrate them.
|
||||||
- Telegram: add poll sending via `openclaw message poll` (duration seconds, silent delivery, anonymity controls). (#16209) Thanks @robbyczgw-cla.
|
- Telegram: add poll sending via `openclaw message poll` (duration seconds, silent delivery, anonymity controls). (#16209) Thanks @robbyczgw-cla.
|
||||||
|
|
||||||
### Fixes
|
### Fixes
|
||||||
|
|||||||
@@ -186,13 +186,9 @@ WhatsApp runs through the gateway's web channel (Baileys Web). It starts automat
|
|||||||
moderation: false,
|
moderation: false,
|
||||||
},
|
},
|
||||||
replyToMode: "off", // off | first | all
|
replyToMode: "off", // off | first | all
|
||||||
dm: {
|
dmPolicy: "pairing",
|
||||||
enabled: true,
|
allowFrom: ["1234567890", "steipete"],
|
||||||
policy: "pairing",
|
dm: { enabled: true, groupEnabled: false, groupChannels: ["openclaw-dm"] },
|
||||||
allowFrom: ["1234567890", "steipete"],
|
|
||||||
groupEnabled: false,
|
|
||||||
groupChannels: ["openclaw-dm"],
|
|
||||||
},
|
|
||||||
guilds: {
|
guilds: {
|
||||||
"123456789012345678": {
|
"123456789012345678": {
|
||||||
slug: "friends-of-openclaw",
|
slug: "friends-of-openclaw",
|
||||||
@@ -276,13 +272,9 @@ WhatsApp runs through the gateway's web channel (Baileys Web). It starts automat
|
|||||||
enabled: true,
|
enabled: true,
|
||||||
botToken: "xoxb-...",
|
botToken: "xoxb-...",
|
||||||
appToken: "xapp-...",
|
appToken: "xapp-...",
|
||||||
dm: {
|
dmPolicy: "pairing",
|
||||||
enabled: true,
|
allowFrom: ["U123", "U456", "*"],
|
||||||
policy: "pairing",
|
dm: { enabled: true, groupEnabled: false, groupChannels: ["G123"] },
|
||||||
allowFrom: ["U123", "U456", "*"],
|
|
||||||
groupEnabled: false,
|
|
||||||
groupChannels: ["G123"],
|
|
||||||
},
|
|
||||||
channels: {
|
channels: {
|
||||||
C123: { allow: true, requireMention: true, allowBots: false },
|
C123: { allow: true, requireMention: true, allowBots: false },
|
||||||
"#general": {
|
"#general": {
|
||||||
|
|||||||
Reference in New Issue
Block a user