mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 06:00:43 +00:00
docs(whatsapp): correct replyToMode values
This commit is contained in:
@@ -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",
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user