Inbox AI privacy
The inbox runs two automatic AI behaviours that ship conversation content to a third-party LLM: auto-categorize, which classifies each inbound message body into a conversation category (sales, support, spam), and auto-summarize, which generates a summary when a conversation closes. Both are ON by default on every workspace. If your organization works with regulated content — PHI under HIPAA, or EU-governance rules that restrict which processors touch message data — you can turn either behaviour off at Settings → Compliance → Inbox AI privacy. The gate is tenant-owned: it is your organization’s choice, and no platform mandate flips it for you.These controls only govern the inbox categorize/summarize hops. Redaction
of universal enforcement (opt-out phrasing, consent markers) and the
outbound DLP scanner stay active regardless.
What the gates control
Three settings are read by the inbound classify and close-summary paths:
Disabling a gate stops its corresponding LLM call. Spam handling runs as part
of categorization, so when
auto_categorize is off there is no
classification and spam_action has no input to act on — the setting still
saves, but nothing triggers it.
The persisted organization settings
The page reads and writes two keys on your organization’s settings blob, the same keys the inbound classify and close-summary paths consult on every event:settings.inbox_auto_categorize.enabledsettings.inbox_auto_summarize.enabled
settings.inbox_spam_policy.action. The
keys persist on organization settings rather than per-user preference so the
decision is a posture commitment, not a per-operator habit.
Endpoint surface
The same surface is available over the public API:PATCH accepts any subset of the three fields and leaves the others
untouched:
Compliance posture framing
Both behaviours ship message content to a third-party LLM, and several obligations treat processors as a regulated lane:- HIPAA: inbound message bodies can carry PHI. Until your BAA posture
covers the LLM hop, keeping
auto_categorizeandauto_summarizeoff is the conservative read. See HIPAA. - EU data governance: message bodies may contain personal data subject to processor restrictions. Opting out keeps processing inside your agreed scope. See the GDPR posture guide.
Effect on features when off
Turning a gate off stops the corresponding LLM call and nothing else:- Auto-categorize off: conversations still arrive; inbox tabs and saved views still render, with no category assigned. Spam handling stops.
- Auto-summarize off: closing a conversation skips the summary write. Conversation history, notes, and tags are unaffected.
- Spam action: with
auto_categorizeoff, the classifier never runs, sospam_actionhas nothing to act on regardless of the saved value.
Verify the state landed
- Apply your change in the dashboard or with
PATCH. - Read back with
GETand confirm the fields match what you set:
- The write records an audit log entry
(
settings.inbox_ai_privacy_updated), so the change is visible in your organization’s audit trail.
Related
- DLP scanner — outbound message body scanning
- Agent identity governance — AI agent posture
- HIPAA — PHI handling posture
- GDPR posture guide — EU data governance