--- summary: "Synology Chat webhook setup and OpenClaw config" read_when: - Setting up Synology Chat with OpenClaw - Debugging Synology Chat webhook routing title: "Synology Chat" --- Synology Chat connects to OpenClaw through a webhook pair: a Synology Chat outgoing webhook posts inbound direct messages to the Gateway, and replies go back through a Synology Chat incoming webhook. Status: official plugin, installed separately. Direct messages only; text and hosted file sends are supported. ## Install ```bash openclaw plugins install @openclaw/synology-chat ``` Local checkout (when running from a git repo): ```bash openclaw plugins install ./path/to/local/synology-chat-plugin ``` Details: [Plugins](/tools/plugin) ## Quick setup 1. Install the plugin (above). 2. In Synology Chat integrations: - Create an incoming webhook and copy its URL. - Create an outgoing webhook with your secret token. 3. Point the outgoing webhook URL to your OpenClaw Gateway: - `https://gateway-host/webhook/synology` by default. - Or your custom `channels.synology-chat.webhookPath`. - Record that exact externally reachable HTTPS URL as `channels.synology-chat.webhookUrl` so the NAS can retrieve hosted attachments. 4. Finish setup in OpenClaw. Synology Chat appears in the same channel setup list in both flows: - Guided: `openclaw onboard` or `openclaw channels add` - Direct: `openclaw channels add --channel synology-chat --token --url --webhook-url ` 5. Restart the Gateway and send a DM to the Synology Chat bot. Webhook auth details: - OpenClaw accepts the outgoing webhook token from `body.token`, then `?token=...`, then headers. - Accepted header forms: - `x-synology-token` - `x-webhook-token` - `x-openclaw-token` - `Authorization: Bearer ` - Empty or missing tokens fail closed. - Payloads may be `application/x-www-form-urlencoded` or `application/json`; `token`, `user_id`, and `text` are required. ## Inbound durability After token, sender-policy, and rate-limit checks pass, OpenClaw removes the webhook token from the stored envelope and durably queues the event before acknowledging it. The route returns `204` only after that append succeeds; a persistence failure returns `503` so Synology Chat can retry instead of silently losing the message. The durable `204` carries `x-openclaw-delivery-accepted: durable`; authentication, validation, and storage-error responses omit the marker, so reverse proxies can require it to distinguish durable acceptance from a generic response. Pending or retryable events survive a Gateway restart. Synology's stable `post_id` suppresses duplicate queue entries while the corresponding active or retained completion record exists. Delivery remains at least once across the queue-to-agent handoff, so a crash at that boundary can still replay a turn. Minimal config: ```json5 { channels: { "synology-chat": { enabled: true, token: "synology-outgoing-token", incomingUrl: "https://nas.example.com/webapi/entry.cgi?api=SYNO.Chat.External&method=incoming&version=2&token=...", webhookUrl: "https://gateway.example.com/webhook/synology", webhookPath: "/webhook/synology", dmPolicy: "allowlist", allowedUserIds: ["123456"], rateLimitPerMinute: 30, allowInsecureSsl: false, }, }, } ``` ## Environment variables For the default account, you can use env vars: - `SYNOLOGY_CHAT_TOKEN` - `SYNOLOGY_CHAT_INCOMING_URL` - `SYNOLOGY_NAS_HOST` - `SYNOLOGY_ALLOWED_USER_IDS` (comma-separated) - `SYNOLOGY_RATE_LIMIT` - `OPENCLAW_BOT_NAME` Config values override env vars. `SYNOLOGY_CHAT_INCOMING_URL` and `SYNOLOGY_NAS_HOST` cannot be set from a workspace `.env`; see [Workspace `.env` files](/gateway/security#workspace-env-files). ## DM policy and access control - Supported `dmPolicy` values: `allowlist` (default), `open`, and `disabled`. Synology Chat has no pairing flow; approve senders by adding their numeric Synology user IDs to `allowedUserIds`. - `allowedUserIds` accepts a list (or comma-separated string) of Synology user IDs. - In `allowlist` mode, an empty `allowedUserIds` list is treated as misconfiguration and the webhook route will not start. - `dmPolicy: "open"` allows public DMs only when `allowedUserIds` includes `"*"`; with restrictive entries, only matching users can chat. `open` with an empty `allowedUserIds` list also refuses to start the route. - `dmPolicy: "disabled"` blocks DMs. - Reply recipient binding stays on stable numeric `user_id` by default. `channels.synology-chat.dangerouslyAllowNameMatching: true` is break-glass compatibility mode that re-enables mutable username/nickname lookup for reply delivery. ## Outbound delivery Use numeric Synology Chat user IDs as targets. The `synology-chat:`, `synology_chat:`, and `synology:` prefixes are accepted. Examples: ```bash openclaw message send --channel synology-chat --target 123456 --message "Hello from OpenClaw" openclaw message send --channel synology-chat --target synology-chat:123456 --message "Hello again" openclaw message send --channel synology-chat --target synology:123456 --message "Short prefix" ``` Outbound text is chunked at 2000 characters, and ordinary links remain intact. Keep **Hide URL previews in conversations and channels** enabled in Synology Chat Admin Console on a supported Chat Server release. For attachments, OpenClaw loads the source under its guarded outbound-media policy, freezes the resulting bytes in bounded plugin-scoped SQLite state, and gives Synology a short-lived opaque HTTPS capability on the configured webhook route. The NAS receives only this OpenClaw-hosted URL, never the original remote or local media reference. Capabilities are account- and route-scoped, reusable for delayed `GET` or `HEAD` requests during their ten-minute lifetime, and expire automatically. Files are limited to 32 MB. Each account can serve at most four attachment responses concurrently and 128 MB per minute; stalled responses are closed after two minutes. Byte-range responses are not advertised. `webhookUrl` and `webhookPath` have different roles: - `webhookUrl` is the exact externally reachable HTTPS callback configured in Synology Chat. OpenClaw uses its public origin, path, and existing query string when creating attachment capabilities. - `webhookPath` is the internal Gateway route. A reverse proxy may map the public URL to this route, but should expose only this plugin path, not the general Gateway HTTP surface. - `incomingUrl` points in the opposite direction: OpenClaw uses it to post replies to the NAS. OpenClaw never derives the public URL from `Host` or `X-Forwarded-*` headers and never falls back to forwarding the original source URL. If `webhookUrl` is missing or invalid, inbound messages and outbound text continue to work, while attachment sends fail with an actionable setup error. ## Multi-account Multiple Synology Chat accounts are supported under `channels.synology-chat.accounts`. Each account can override token, incoming URL, public webhook URL, webhook path, DM policy, and limits. Direct-message sessions are isolated per account and user, so the same numeric `user_id` on two different Synology accounts does not share transcript state. Give each enabled account a distinct `webhookPath`. OpenClaw rejects duplicate exact paths and refuses to start named accounts that only inherit a shared webhook path in multi-account setups. If you intentionally need legacy inheritance for a named account, set `dangerouslyAllowInheritedWebhookPath: true` on that account or at `channels.synology-chat`, but duplicate exact paths are still rejected fail-closed. Prefer explicit per-account paths. ```json5 { channels: { "synology-chat": { enabled: true, accounts: { default: { token: "token-a", incomingUrl: "https://nas-a.example.com/...token=...", webhookUrl: "https://gateway.example.com/webhook/synology", }, alerts: { token: "token-b", incomingUrl: "https://nas-b.example.com/...token=...", webhookUrl: "https://gateway.example.com/webhook/synology-alerts", webhookPath: "/webhook/synology-alerts", dmPolicy: "allowlist", allowedUserIds: ["987654"], }, }, }, }, } ``` ## Security notes - Keep `token` secret and rotate it if leaked. - Keep `allowInsecureSsl: false` unless you explicitly trust a self-signed local NAS cert. - Inbound webhook requests are token-verified and rate-limited per sender (`rateLimitPerMinute`, default 30). - Invalid token checks use constant-time secret comparison and fail closed; repeated invalid-token attempts temporarily lock out the source IP. - Inbound message text is sanitized against known prompt-injection patterns and truncated at 4000 characters. - Prefer `dmPolicy: "allowlist"` for production. - Keep `dangerouslyAllowNameMatching` off unless you explicitly need legacy username-based reply delivery. - Keep `dangerouslyAllowInheritedWebhookPath` off unless you explicitly accept shared-path routing risk in a multi-account setup. - Reverse-proxy access logs can capture attachment capability tokens. Disable query-string logging or redact `__openclaw_synology_media_token_*` parameters, and keep application logs free of full capability URLs. - Hosted attachments use `Content-Disposition: attachment`, `X-Content-Type-Options: nosniff`, and `Cache-Control: no-store`. Files declared or named as HTML, SVG, or XML are rejected. Frozen bytes that begin as a UTF-8, UTF-16, or UTF-32 markup document after an optional encoding marker, whitespace, and comments are also rejected; literal tags later in passive text or source files do not make those files active documents. ## Troubleshooting - `Missing required fields (token, user_id, text)`: - the outgoing webhook payload is missing one of the required fields - if Synology sends the token in headers, make sure the gateway/proxy preserves those headers - `Invalid token`: - the outgoing webhook secret does not match `channels.synology-chat.token` - the request is hitting the wrong account/webhook path - a reverse proxy stripped the token header before the request reached OpenClaw - `Rate limit exceeded`: - too many invalid token attempts from the same source can temporarily lock that source out - authenticated senders also have a separate per-user message rate limit - `Allowlist is empty. Configure allowedUserIds or use dmPolicy=open with allowedUserIds=["*"].`: - `dmPolicy="allowlist"` is enabled but no users are configured - `User not authorized`: - the sender's numeric `user_id` is not in `allowedUserIds` - `Synology Chat attachments require webhookUrl`: - set the account's exact externally reachable HTTPS outgoing-webhook callback URL - confirm the reverse proxy maps only that public route to `webhookPath` - text and inbound messaging remain available while attachment setup is incomplete ## Related - [Channels Overview](/channels) — all supported channels - [Groups](/channels/groups) — group chat behavior and mention gating - [Channel Routing](/channels/channel-routing) — session routing for messages - [Security](/gateway/security) — access model and hardening