chore(sync): mirror docs from openclaw/openclaw@a580db58ca

This commit is contained in:
openclaw-docs-sync[bot] 2026-04-25 00:08:37 +00:00
parent 8074591b98
commit 28667ca304
2 changed files with 10 additions and 9 deletions

View File

@ -1,5 +1,5 @@
{
"repository": "openclaw/openclaw",
"sha": "e625651de82f2c3bea33e7b47f2817b38ad78650",
"syncedAt": "2026-04-24T23:58:33.720Z"
"sha": "a580db58cafa0bf8fff8d7323eeb83b277508bff",
"syncedAt": "2026-04-25T00:07:06.294Z"
}

View File

@ -380,19 +380,20 @@ When the linked self number is also present in `allowFrom`, WhatsApp self-chat s
WhatsApp supports native reply quoting, where outbound replies visibly quote the inbound message. Control it with `channels.whatsapp.replyToMode`.
| Value | Behavior |
| -------- | ---------------------------------------------------------------------------------- |
| `"auto"` | Quote the inbound message when the provider supports it; skip quoting otherwise |
| `"on"` | Always quote the inbound message; fall back to a plain send if quoting is rejected |
| `"off"` | Never quote; send as a plain message |
| Value | Behavior |
| ----------- | --------------------------------------------------------------------- |
| `"off"` | Never quote; send as a plain message |
| `"first"` | Quote only the first outbound reply chunk |
| `"all"` | Quote every outbound reply chunk |
| `"batched"` | Quote queued batched replies while leaving immediate replies unquoted |
Default is `"auto"`. Per-account overrides use `channels.whatsapp.accounts.<id>.replyToMode`.
Default is `"off"`. Per-account overrides use `channels.whatsapp.accounts.<id>.replyToMode`.
```json5
{
channels: {
whatsapp: {
replyToMode: "on",
replyToMode: "first",
},
},
}