The bundledDocumentation Index
Fetch the complete documentation index at: https://docs.openclaw.ai/llms.txt
Use this file to discover all available pages before exploring further.
imessage plugin now reaches the same private API surface as BlueBubbles (react, edit, unsend, reply, sendWithEffect, group management, attachments) by driving steipete/imsg over JSON-RPC. If you already run a Mac with imsg installed, you can drop the BlueBubbles server and let the plugin talk to Messages.app directly.
BlueBubbles support was removed. OpenClaw supports iMessage through imsg only. This guide is for migrating old channels.bluebubbles configs to channels.imessage; there is no other supported migration path.
When this migration makes sense
- You already run
imsgon the same Mac (or one reachable over SSH) where Messages.app is signed in. - You want one fewer moving part — no separate BlueBubbles server, no REST endpoint to authenticate, no webhook plumbing. Single CLI binary instead of a server + client app + helper.
- You are on a supported macOS /
imsgbuild where the private API probe reportsavailable: true.
What imsg does
imsg is a local macOS CLI for Messages. OpenClaw starts imsg rpc as a child process and talks JSON-RPC over stdin/stdout. There is no HTTP server, webhook URL, background daemon, launch agent, or port to expose.
- Reads come from
~/Library/Messages/chat.dbusing a read-only SQLite handle. - Live inbound messages come from
imsg watch/watch.subscribe, which followschat.dbfilesystem events with a polling fallback. - Sends use Messages.app automation for normal text and file sends.
- Advanced actions use
imsg launchto inject theimsghelper into Messages.app. That is what unlocks read receipts, typing indicators, rich sends, edit, unsend, threaded reply, tapbacks, and group management. - Linux builds can inspect a copied
chat.db, but cannot send, watch the live Mac database, or drive Messages.app. For OpenClaw iMessage, runimsgon the signed-in Mac or through an SSH wrapper to that Mac.
Before you start
-
Install
imsgon the Mac that runs Messages.app:Ifimsg chatsfails withunable to open database file, empty output, orauthorization denied, grant Full Disk Access to the terminal, editor, Node process, Gateway service, or SSH parent process that launchesimsg, then reopen that parent process. -
Verify the read, watch, send, and RPC surfaces before changing OpenClaw config:
Replace
42with a real chat id fromimsg chats. Sending requires Automation permission for Messages.app. If OpenClaw will run through SSH, run these commands through the same SSH wrapper or user context that OpenClaw will use. -
Enable the private API bridge when you need advanced actions:
imsg launchrequires SIP to be disabled. Basic send, history, and watch work withoutimsg launch; advanced actions do not. -
Verify the bridge through OpenClaw:
You want
imessage.privateApi.available: true. If it reportsfalse, fix that first — see Capability detection. -
Snapshot your config:
Config translation
iMessage and BlueBubbles share a lot of channel-level config. The keys that change are mostly transport (REST server vs local CLI). Behavior keys (dmPolicy, groupPolicy, allowFrom, etc.) keep the same meaning.
| BlueBubbles | bundled iMessage | Notes |
|---|---|---|
channels.bluebubbles.enabled | channels.imessage.enabled | Same semantics. |
channels.bluebubbles.serverUrl | (removed) | No REST server — the plugin spawns imsg rpc over stdio. |
channels.bluebubbles.password | (removed) | No webhook authentication needed. |
| (implicit) | channels.imessage.cliPath | Path to imsg (default imsg); use a wrapper script for SSH. |
| (implicit) | channels.imessage.dbPath | Optional Messages.app chat.db override; auto-detected when omitted. |
| (implicit) | channels.imessage.remoteHost | host or user@host — only needed when cliPath is an SSH wrapper and you want SCP attachment fetches. |
channels.bluebubbles.dmPolicy | channels.imessage.dmPolicy | Same values (pairing / allowlist / open / disabled). |
channels.bluebubbles.allowFrom | channels.imessage.allowFrom | Pairing approvals carry over by handle, not by token. |
channels.bluebubbles.groupPolicy | channels.imessage.groupPolicy | Same values (allowlist / open / disabled). |
channels.bluebubbles.groupAllowFrom | channels.imessage.groupAllowFrom | Same. |
channels.bluebubbles.groups | channels.imessage.groups | Copy this verbatim, including any groups: { "*": { ... } } wildcard entry. Per-group requireMention, tools, toolsBySender carry over. With groupPolicy: "allowlist", an empty or missing groups block silently drops every group message — see “Group registry footgun” below. |
channels.bluebubbles.sendReadReceipts | channels.imessage.sendReadReceipts | Default true. With the bundled plugin this only fires when the private API probe is up. |
channels.bluebubbles.includeAttachments | channels.imessage.includeAttachments | Same shape, same off-by-default. If you had attachments flowing on BlueBubbles you must re-set this explicitly on the iMessage block — it does not carry over implicitly, and inbound photos/media will be silently dropped with no Inbound message log line until you do. |
channels.bluebubbles.attachmentRoots | channels.imessage.attachmentRoots | Local roots; same wildcard rules. |
| (N/A) | channels.imessage.remoteAttachmentRoots | Only used when remoteHost is set for SCP fetches. |
channels.bluebubbles.mediaMaxMb | channels.imessage.mediaMaxMb | Default 16 MB on iMessage (BlueBubbles default was 8 MB). Set explicitly if you want to keep the lower cap. |
channels.bluebubbles.textChunkLimit | channels.imessage.textChunkLimit | Default 4000 on both. |
channels.bluebubbles.coalesceSameSenderDms | channels.imessage.coalesceSameSenderDms | Same opt-in. DM-only — group chats keep instant per-message dispatch on both channels. Widens the default inbound debounce to 2500 ms when enabled without an explicit messages.inbound.byChannel.imessage. See iMessage docs § Coalescing split-send DMs. |
channels.bluebubbles.enrichGroupParticipantsFromContacts | (N/A) | iMessage already reads sender display names from chat.db. |
channels.bluebubbles.actions.* | channels.imessage.actions.* | Per-action toggles: reactions, edit, unsend, reply, sendWithEffect, renameGroup, setGroupIcon, addParticipant, removeParticipant, leaveGroup, sendAttachment. |
channels.bluebubbles.accounts.*) translate one-to-one to channels.imessage.accounts.*.
Group registry footgun
The bundled iMessage plugin runs two separate group allowlist gates back-to-back. Both must pass for a group message to reach the agent:- Sender / chat-target allowlist (
channels.imessage.groupAllowFrom) — checked byisAllowedIMessageSender. Matches inbound messages by sender handle,chat_guid,chat_identifier, orchat_id. Same shape as BlueBubbles. - Group registry (
channels.imessage.groups) — checked byresolveChannelGroupPolicyfrominbound-processing.ts:199. WithgroupPolicy: "allowlist", this gate requires either:- a
groups: { "*": { ... } }wildcard entry (setsallowAll = true), or - an explicit per-
chat_identry undergroups.
- a
warn-level signals so this is no longer silent at default log level:
- A one-time startup
warnper account whengroupPolicy: "allowlist"is set butchannels.imessage.groupsis empty (no"*"wildcard, no per-chat_identries) — fired before any messages land. - A one-time per-
chat_idwarnthe first time a specific group is dropped at runtime, naming the chat_id and the exact key to add togroupsto allow it.
groupAllowFrom and groupPolicy but skip the groups block, because BlueBubbles’ groups: { "*": { "requireMention": true } } looks like an unrelated mention setting. It’s actually load-bearing for the registry gate.
The minimum config to keep group messages flowing after groupPolicy: "allowlist":
requireMention: true under * is harmless when no mention patterns are configured: the runtime sets canDetectMention = false and short-circuits the mention drop at inbound-processing.ts:512. With mention patterns configured (agents.list[].groupChat.mentionPatterns), it works as expected.
If the gateway logs imessage: dropping group message from chat_id=<id> or the startup line imessage: groupPolicy="allowlist" but channels.imessage.groups is empty, gate 2 is dropping — add the groups block.
Step-by-step
-
Add an iMessage block alongside the existing BlueBubbles block. Keep the old block only as a copy source until the new path is verified:
-
Dry-run probe — start the gateway and confirm iMessage reports healthy:
Because
imessage.enabledis stillfalse, no inbound iMessage traffic is routed yet — but--probeexercises the bridge so you catch permission/install issues before the cutover. -
Cut over. Remove the BlueBubbles config and enable iMessage in one config edit:
Restart the gateway. Inbound iMessage traffic now flows through the bundled plugin.
- Verify DMs. Send the agent a direct message; confirm the reply lands.
-
Verify groups separately. DMs and groups take different code paths — DM success does not prove groups are routing. Send the agent a message in a paired group chat and confirm the reply lands. If the group goes silent (no agent reply, no error), check the gateway log for
imessage: dropping group message from chat_id=<id>or the startupimessage: groupPolicy="allowlist" but channels.imessage.groups is emptyline — both fire at the default log level. If either appears, yourgroupsblock is missing or empty — see “Group registry footgun” above. -
Verify the action surface — from a paired DM, ask the agent to react, edit, unsend, reply, send a photo, and (in a group) rename the group / add or remove a participant. Each action should land natively in Messages.app. If any throws “iMessage
<action>requires the imsg private API bridge”, runimsg launchagain and refreshchannels status --probe. -
Remove the BlueBubbles server and config once iMessage DMs, groups, and actions are verified. OpenClaw will not use
channels.bluebubbles.
Action parity at a glance
| Action | legacy BlueBubbles | bundled iMessage |
|---|---|---|
| Send text / SMS fallback | ✅ | ✅ |
| Send media (photo, video, file, voice) | ✅ | ✅ |
Threaded reply (reply_to_guid) | ✅ | ✅ (closes #51892) |
Tapback (react) | ✅ | ✅ |
| Edit / unsend (macOS 13+ recipients) | ✅ | ✅ |
| Send with screen effect | ✅ | ✅ (closes part of #9394) |
| Rich text bold / italic / underline / strikethrough | ✅ | ✅ (typed-run formatting via attributedBody) |
| Rename group / set group icon | ✅ | ✅ |
| Add / remove participant, leave group | ✅ | ✅ |
| Read receipts and typing indicator | ✅ | ✅ (gated on private API probe) |
| Same-sender DM coalescing | ✅ | ✅ (DM-only; opt-in via channels.imessage.coalesceSameSenderDms) |
| Catchup of inbound messages received while gateway is down | ✅ (webhook replay + history fetch) | ✅ (opt-in via channels.imessage.catchup.enabled; closes #78649) |
channels.imessage.catchup.enabled is true, the gateway runs one chats.list + per-chat messages.history pass against the same JSON-RPC client used by imsg watch, replays each missed inbound row through the live dispatch path (allowlists, group policy, debouncer, echo cache), and persists a per-account cursor so subsequent startups pick up where they left off. See Catching up after gateway downtime for tuning.
Pairing, sessions, and ACP bindings
- Pairing approvals carry over by handle. You do not need to re-approve known senders —
channels.imessage.allowFromrecognizes the same+15555550123/user@example.comstrings BlueBubbles used. - Sessions stay scoped per agent + chat. DMs collapse into the agent main session under default
session.dmScope=main; group sessions stay isolated perchat_id. The session keys differ (agent:<id>:imessage:group:<chat_id>vs the BlueBubbles equivalent) — old conversation history under BlueBubbles session keys does not carry into iMessage sessions. - ACP bindings referencing
match.channel: "bluebubbles"need to be updated to"imessage". Thematch.peer.idshapes (chat_id:,chat_guid:,chat_identifier:, bare handle) are identical.
No rollback channel
There is no supported BlueBubbles runtime to switch back to. If iMessage verification fails, setchannels.imessage.enabled: false, restart the Gateway, fix the imsg blocker, and retry the cutover.
The reply cache lives at ~/.openclaw/state/imessage/reply-cache.jsonl (mode 0600, parent dir 0700). It is safe to delete if you want a clean slate.
Related
- iMessage — full iMessage channel reference, including
imsg launchsetup and capability detection. /channels/bluebubbles— legacy URL that redirects to this migration guide.- Pairing — DM authentication and pairing flow.
- Channel Routing — how the gateway picks a channel for outbound replies.