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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
G
Google Developers Blog
B
Blog RSS Feed
A
About on SuperTechFans
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 司徒正美
D
Docker
F
Fortinet All Blogs
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
H
Help Net Security
WordPress大学
WordPress大学
MyScale Blog
MyScale Blog
博客园 - Franky
人人都是产品经理
人人都是产品经理
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Blog — PlanetScale
Blog — PlanetScale
L
LangChain 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(feishu): preserve disabled group policy for explicit ...
steipete · 2026-04-28 · via Recent Commits to openclaw:main

@@ -59,11 +59,11 @@ openclaw pairing approve feishu <CODE>

59596060

**Group policy** (`channels.feishu.groupPolicy`):

616162-

| Value | Behavior |

63-

| ------------- | ------------------------------------------ |

64-

| `"open"` | Respond to all messages in groups |

65-

| `"allowlist"` | Only respond to groups in `groupAllowFrom` |

66-

| `"disabled"` | Disable all group messages |

62+

| Value | Behavior |

63+

| ------------- | -------------------------------------------------------------------------------------------- |

64+

| `"open"` | Respond to all messages in groups |

65+

| `"allowlist"` | Only respond to groups in `groupAllowFrom` or explicitly configured under `groups.<chat_id>` |

66+

| `"disabled"` | Disable all group messages |

67676868

Default: `allowlist`

6969

@@ -117,6 +117,23 @@ Default: `allowlist`

117117

}

118118

```

119119120+

You can also admit a group by adding an explicit `groups.<chat_id>` entry. Wildcard defaults under `groups.*` configure matching groups, but they do not admit groups by themselves.

121+122+

```json5

123+

{

124+

channels: {

125+

feishu: {

126+

groupPolicy: "allowlist",

127+

groups: {

128+

oc_xxx: {

129+

requireMention: false,

130+

},

131+

},

132+

},

133+

},

134+

}

135+

```

136+120137

### Restrict senders within a group

121138122139

```json5

@@ -386,34 +403,34 @@ See [Get group/user IDs](#get-groupuser-ids) for lookup tips.

386403387404

Full configuration: [Gateway configuration](/gateway/configuration)

388405389-

| Setting | Description | Default |

390-

| ------------------------------------------------- | ------------------------------------------ | ---------------- |

391-

| `channels.feishu.enabled` | Enable/disable the channel | `true` |

392-

| `channels.feishu.domain` | API domain (`feishu` or `lark`) | `feishu` |

393-

| `channels.feishu.connectionMode` | Event transport (`websocket` or `webhook`) | `websocket` |

394-

| `channels.feishu.defaultAccount` | Default account for outbound routing | `default` |

395-

| `channels.feishu.verificationToken` | Required for webhook mode ||

396-

| `channels.feishu.encryptKey` | Required for webhook mode ||

397-

| `channels.feishu.webhookPath` | Webhook route path | `/feishu/events` |

398-

| `channels.feishu.webhookHost` | Webhook bind host | `127.0.0.1` |

399-

| `channels.feishu.webhookPort` | Webhook bind port | `3000` |

400-

| `channels.feishu.accounts.<id>.appId` | App ID ||

401-

| `channels.feishu.accounts.<id>.appSecret` | App Secret ||

402-

| `channels.feishu.accounts.<id>.domain` | Per-account domain override | `feishu` |

403-

| `channels.feishu.accounts.<id>.tts` | Per-account TTS override | `messages.tts` |

404-

| `channels.feishu.dmPolicy` | DM policy | `allowlist` |

405-

| `channels.feishu.allowFrom` | DM allowlist (open_id list) | [BotOwnerId] |

406-

| `channels.feishu.groupPolicy` | Group policy | `allowlist` |

407-

| `channels.feishu.groupAllowFrom` | Group allowlist ||

408-

| `channels.feishu.requireMention` | Require @mention in groups | `true` |

409-

| `channels.feishu.groups.<chat_id>.requireMention` | Per-group @mention override | inherited |

410-

| `channels.feishu.groups.<chat_id>.enabled` | Enable/disable a specific group | `true` |

411-

| `channels.feishu.textChunkLimit` | Message chunk size | `2000` |

412-

| `channels.feishu.mediaMaxMb` | Media size limit | `30` |

413-

| `channels.feishu.streaming` | Streaming card output | `true` |

414-

| `channels.feishu.blockStreaming` | Block-level streaming | `true` |

415-

| `channels.feishu.typingIndicator` | Send typing reactions | `true` |

416-

| `channels.feishu.resolveSenderNames` | Resolve sender display names | `true` |

406+

| Setting | Description | Default |

407+

| ------------------------------------------------- | -------------------------------------------------------------------------------- | ---------------- |

408+

| `channels.feishu.enabled` | Enable/disable the channel | `true` |

409+

| `channels.feishu.domain` | API domain (`feishu` or `lark`) | `feishu` |

410+

| `channels.feishu.connectionMode` | Event transport (`websocket` or `webhook`) | `websocket` |

411+

| `channels.feishu.defaultAccount` | Default account for outbound routing | `default` |

412+

| `channels.feishu.verificationToken` | Required for webhook mode ||

413+

| `channels.feishu.encryptKey` | Required for webhook mode ||

414+

| `channels.feishu.webhookPath` | Webhook route path | `/feishu/events` |

415+

| `channels.feishu.webhookHost` | Webhook bind host | `127.0.0.1` |

416+

| `channels.feishu.webhookPort` | Webhook bind port | `3000` |

417+

| `channels.feishu.accounts.<id>.appId` | App ID ||

418+

| `channels.feishu.accounts.<id>.appSecret` | App Secret ||

419+

| `channels.feishu.accounts.<id>.domain` | Per-account domain override | `feishu` |

420+

| `channels.feishu.accounts.<id>.tts` | Per-account TTS override | `messages.tts` |

421+

| `channels.feishu.dmPolicy` | DM policy | `allowlist` |

422+

| `channels.feishu.allowFrom` | DM allowlist (open_id list) | [BotOwnerId] |

423+

| `channels.feishu.groupPolicy` | Group policy | `allowlist` |

424+

| `channels.feishu.groupAllowFrom` | Group allowlist ||

425+

| `channels.feishu.requireMention` | Require @mention in groups | `true` |

426+

| `channels.feishu.groups.<chat_id>.requireMention` | Per-group @mention override; explicit IDs also admit the group in allowlist mode | inherited |

427+

| `channels.feishu.groups.<chat_id>.enabled` | Enable/disable a specific group | `true` |

428+

| `channels.feishu.textChunkLimit` | Message chunk size | `2000` |

429+

| `channels.feishu.mediaMaxMb` | Media size limit | `30` |

430+

| `channels.feishu.streaming` | Streaming card output | `true` |

431+

| `channels.feishu.blockStreaming` | Block-level streaming | `true` |

432+

| `channels.feishu.typingIndicator` | Send typing reactions | `true` |

433+

| `channels.feishu.resolveSenderNames` | Resolve sender display names | `true` |

417434418435

---

419436