From bb1bdf79e03b26c1a97a46de5c698a15837712fe Mon Sep 17 00:00:00 2001 From: Vignesh Natarajan Date: Fri, 13 Feb 2026 23:22:44 -0800 Subject: [PATCH] Telegram: clarify replyToMode default (#16034) --- CHANGELOG.md | 1 + docs/gateway/configuration-reference.md | 2 +- docs/zh-CN/channels/telegram.md | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36e7bd63a72..b14a60b6407 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ Docs: https://docs.openclaw.ai - Telegram: cap bot menu registration to Telegram's 100-command limit with an overflow warning while keeping typed hidden commands available. (#15844) Thanks @battman21. - Telegram: scope skill commands to the resolved agent for default accounts so `setMyCommands` no longer triggers `BOT_COMMANDS_TOO_MUCH` when multiple agents are configured. (#15599) - Discord: avoid misrouting numeric guild allowlist entries to `/channels/` by prefixing guild-only inputs with `guild:` during resolution. (#12326) Thanks @headswim. +- Telegram: default `replyToMode` to `off` so DM replies no longer auto-quote every message; opt back in with `replyToMode="first"` or `"all"`. (#16034) Thanks @pejmanjohn. - Memory/QMD: default `memory.qmd.searchMode` to `search` for faster CPU-only recall and always scope `search`/`vsearch` requests to managed collections (auto-falling back to `query` when required). (#16047) Thanks @togotago. - MS Teams: preserve parsed mention entities/text when appending OneDrive fallback file links, and accept broader real-world Teams mention ID formats (`29:...`, `8:orgid:...`) while still rejecting placeholder patterns. (#15436) Thanks @hyojin. - Media: classify `text/*` MIME types as documents in media-kind routing so text attachments are no longer treated as unknown. (#12237) Thanks @arosstale. diff --git a/docs/gateway/configuration-reference.md b/docs/gateway/configuration-reference.md index 8c58cd4e94a..3ce42b15062 100644 --- a/docs/gateway/configuration-reference.md +++ b/docs/gateway/configuration-reference.md @@ -126,7 +126,7 @@ WhatsApp runs through the gateway's web channel (Baileys Web). It starts automat { command: "generate", description: "Create an image" }, ], historyLimit: 50, - replyToMode: "first", // off | first | all + replyToMode: "off", // off | first | all linkPreview: true, streamMode: "partial", // off | partial | block draftChunk: { diff --git a/docs/zh-CN/channels/telegram.md b/docs/zh-CN/channels/telegram.md index 27540da984e..90a21149e37 100644 --- a/docs/zh-CN/channels/telegram.md +++ b/docs/zh-CN/channels/telegram.md @@ -724,7 +724,7 @@ Telegram 反应作为**单独的 `message_reaction` 事件**到达,而不是 - `channels.telegram.groups..topics..requireMention`:每话题提及门控覆盖。 - `channels.telegram.capabilities.inlineButtons`:`off | dm | group | all | allowlist`(默认:allowlist)。 - `channels.telegram.accounts..capabilities.inlineButtons`:每账户覆盖。 -- `channels.telegram.replyToMode`:`off | first | all`(默认:`off`)。 +- `channels.telegram.replyToMode`:`off | first | all`(默认:`first`)。 - `channels.telegram.textChunkLimit`:出站分块大小(字符)。 - `channels.telegram.chunkMode`:`length`(默认)或 `newline` 在长度分块之前按空行(段落边界)分割。 - `channels.telegram.linkPreview`:切换出站消息的链接预览(默认:true)。