惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

H
Help Net Security
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
博客园_首页
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
B
Blog
D
DataBreaches.Net
腾讯CDC
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
U
Unit 42
月光博客
月光博客
V
V2EX
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
The Cloudflare Blog
博客园 - 叶小钗
Y
Y Combinator Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(whatsapp): apply hot-reloaded DM policy · openclaw/op...
monitor-inbox.blocks-messages-from-unauthorized-senders-not-allo · 2026-05-11 · via Recent Commits to openclaw:main

@@ -1,13 +1,15 @@

11

import type { AckReactionHandle } from "openclaw/plugin-sdk/channel-feedback";

2+

import type { OpenClawConfig } from "openclaw/plugin-sdk/config-contracts";

23

import type { getReplyFromConfig } from "openclaw/plugin-sdk/reply-runtime";

34

import type { MsgContext } from "openclaw/plugin-sdk/reply-runtime";

45

import { resolveAgentRoute } from "openclaw/plugin-sdk/routing";

56

import { buildGroupHistoryKey } from "openclaw/plugin-sdk/routing";

67

import { logVerbose } from "openclaw/plugin-sdk/runtime-env";

8+

import { resolveWhatsAppAccount } from "../../accounts.js";

79

import { resolveWhatsAppGroupSessionRoute } from "../../group-session-key.js";

810

import { getPrimaryIdentityId, getSenderIdentity } from "../../identity.js";

911

import { normalizeE164 } from "../../text-runtime.js";

10-

import { getRuntimeConfig } from "../config.runtime.js";

12+

import { buildMentionConfig } from "../mentions.js";

1113

import type { MentionConfig } from "../mentions.js";

1214

import type { WebInboundMsg } from "../types.js";

1315

import { maybeSendAckReaction } from "./ack-reaction.js";

@@ -20,7 +22,8 @@ import { resolvePeerId } from "./peer.js";

2022

import { processMessage } from "./process-message.js";

21232224

export function createWebOnMessageHandler(params: {

23-

cfg: ReturnType<typeof getRuntimeConfig>;

25+

cfg: OpenClawConfig;

26+

loadConfig?: () => OpenClawConfig;

2427

verbose: boolean;

2528

connectionId: string;

2629

maxMediaBytes: number;

@@ -35,6 +38,7 @@ export function createWebOnMessageHandler(params: {

3538

account: { authDir?: string; accountId?: string; selfChatMode?: boolean };

3639

}) {

3740

const processForRoute = async (

41+

cfg: OpenClawConfig,

3842

msg: WebInboundMsg,

3943

route: ReturnType<typeof resolveAgentRoute>,

4044

groupHistoryKey: string,

@@ -47,7 +51,7 @@ export function createWebOnMessageHandler(params: {

4751

},

4852

) => {

4953

const processParams: Parameters<typeof processMessage>[0] = {

50-

cfg: params.cfg,

54+

cfg,

5155

msg,

5256

route,

5357

groupHistoryKey,

@@ -83,11 +87,11 @@ export function createWebOnMessageHandler(params: {

8387

};

84888589

return async (msg: WebInboundMsg) => {

90+

const cfg = params.loadConfig?.() ?? params.cfg;

8691

const conversationId = msg.conversationId ?? msg.from;

8792

const peerId = resolvePeerId(msg);

88-

// Fresh config for bindings lookup; other routing inputs are payload-derived.

8993

const baseRoute = resolveAgentRoute({

90-

cfg: getRuntimeConfig(),

94+

cfg,

9195

channel: "whatsapp",

9296

accountId: msg.accountId,

9397

peer: {

@@ -106,6 +110,11 @@ export function createWebOnMessageHandler(params: {

106110

peerId,

107111

})

108112

: route.sessionKey;

113+

const account = resolveWhatsAppAccount({

114+

cfg,

115+

accountId: route.accountId ?? msg.accountId ?? params.account.accountId,

116+

});

117+

const baseMentionConfig = buildMentionConfig(cfg);

109118110119

// Same-phone mode logging retained

111120

if (msg.from === msg.to) {

@@ -142,7 +151,7 @@ export function createWebOnMessageHandler(params: {

142151

return;

143152

}

144153

ackReaction = await maybeSendAckReaction({

145-

cfg: params.cfg,

154+

cfg,

146155

msg,

147156

agentId: route.agentId,

148157

sessionKey: route.sessionKey,

@@ -170,7 +179,7 @@ export function createWebOnMessageHandler(params: {

170179

OriginatingTo: conversationId,

171180

AccountId: route.accountId,

172181

},

173-

cfg: params.cfg,

182+

cfg,

174183

})) ?? null;

175184

} catch {

176185

// Non-fatal: store null so per-agent retries are suppressed.

@@ -197,7 +206,7 @@ export function createWebOnMessageHandler(params: {

197206

OriginatingTo: conversationId,

198207

} satisfies MsgContext;

199208

updateLastRouteInBackground({

200-

cfg: params.cfg,

209+

cfg,

201210

backgroundTasks: params.backgroundTasks,

202211

storeAgentId: route.agentId,

203212

sessionKey: route.sessionKey,

@@ -209,16 +218,16 @@ export function createWebOnMessageHandler(params: {

209218

});

210219211220

let gating = await applyGroupGating({

212-

cfg: params.cfg,

221+

cfg,

213222

msg,

214223

deferMissingMention: hasAudioBody && Boolean(msg.mediaPath),

215224

conversationId,

216225

groupHistoryKey,

217226

agentId: route.agentId,

218227

sessionKey: route.sessionKey,

219-

baseMentionConfig: params.baseMentionConfig,

220-

authDir: params.account.authDir,

221-

selfChatMode: params.account.selfChatMode,

228+

baseMentionConfig,

229+

authDir: account.authDir,

230+

selfChatMode: account.selfChatMode,

222231

groupHistories: params.groupHistories,

223232

groupHistoryLimit: params.groupHistoryLimit,

224233

groupMemberNames: params.groupMemberNames,

@@ -232,7 +241,7 @@ export function createWebOnMessageHandler(params: {

232241

) {

233242

await runAudioPreflightOnce();

234243

gating = await applyGroupGating({

235-

cfg: params.cfg,

244+

cfg,

236245

msg,

237246

...(typeof preflightAudioTranscript === "string"

238247

? { mentionText: preflightAudioTranscript }

@@ -241,9 +250,9 @@ export function createWebOnMessageHandler(params: {

241250

groupHistoryKey,

242251

agentId: route.agentId,

243252

sessionKey: route.sessionKey,

244-

baseMentionConfig: params.baseMentionConfig,

245-

authDir: params.account.authDir,

246-

selfChatMode: params.account.selfChatMode,

253+

baseMentionConfig,

254+

authDir: account.authDir,

255+

selfChatMode: account.selfChatMode,

247256

groupHistories: params.groupHistories,

248257

groupHistoryLimit: params.groupHistoryLimit,

249258

groupMemberNames: params.groupMemberNames,

@@ -271,7 +280,7 @@ export function createWebOnMessageHandler(params: {

271280

// Does not bypass group mention/activation gating above.

272281

if (

273282

await maybeBroadcastMessage({

274-

cfg: params.cfg,

283+

cfg,

275284

msg,

276285

peerId,

277286

route,

@@ -283,13 +292,13 @@ export function createWebOnMessageHandler(params: {

283292

// per-agent checks during broadcast fan-out.

284293

...(ackAlreadySent && msg.chatType !== "group" ? { ackAlreadySent: true } : {}),

285294

...(ackReaction && msg.chatType !== "group" ? { ackReaction } : {}),

286-

processMessage: (m, r, k, opts) => processForRoute(m, r, k, opts),

295+

processMessage: (m, r, k, opts) => processForRoute(cfg, m, r, k, opts),

287296

})

288297

) {

289298

return;

290299

}

291300292-

await processForRoute(msg, route, groupHistoryKey, {

301+

await processForRoute(cfg, msg, route, groupHistoryKey, {

293302

...(preflightAudioTranscript !== undefined ? { preflightAudioTranscript } : {}),

294303

...(ackAlreadySent ? { ackAlreadySent: true } : {}),

295304

...(ackReaction ? { ackReaction } : {}),