@Jolyne_AI: 想用自己的域名收发邮件,要么自己搭一整套邮件服务器,麻烦;要么用第三方服务,隐私又不踏实。 Cloudflare 团队最近开源了 Agentic Inbox:完全跑在 Cloudflare Workers 上的自托管邮箱客户端,还内置 A…
摘要
Cloudflare 开源了 Agentic Inbox,一个完全运行在 Cloudflare Workers 上的自托管邮箱客户端,内置 AI 助手,支持自动阅读邮件并生成回复草稿,可一键部署到 Cloudflare 账户。
查看缓存全文
缓存时间: 2026/07/05 10:33
想用自己的域名收发邮件,要么自己搭一整套邮件服务器,麻烦;要么用第三方服务,隐私又不踏实。
Cloudflare 团队最近开源了 Agentic Inbox:完全跑在 Cloudflare Workers 上的自托管邮箱客户端,还内置 AI 助手。
部署到你的 Cloudflare 账户基本一键搞定:用自定义域名收发邮件;每个邮箱独立隔离存储;附件放对象存储,清晰可控。
GitHub:http://github.com/cloudflare/agentic-inbox…
AI 邮件助手会在新邮件到达后自动阅读,生成回复草稿,但不会自动发送,必须你确认后才会发出。
它还支持搜索历史邮件、整理对话;不同邮箱还能配置不同提示词,按你的习惯来。
如果你的域名在 Cloudflare 托管,又想要一个轻量、数据完全自持的邮箱方案,部署起来就能直接用。
cloudflare/agentic-inbox
Source: https://github.com/cloudflare/agentic-inbox
Agentic Inbox
A self-hosted email client with an AI agent, running entirely on Cloudflare Workers
Agentic Inbox lets you send, receive, and manage emails through a modern web interface – all powered by your own Cloudflare account. Incoming emails arrive via Cloudflare Email Routing, each mailbox is isolated in its own Durable Object with a SQLite database, and attachments are stored in R2.
An AI-powered Email Agent can read your inbox, search conversations, and draft replies – built with the Cloudflare Agents SDK and Workers AI.

Read the blog post to learn more about Cloudflare Email Service and how to use it with the Agents SDK, MCP, and from the Wrangler CLI: Email for Agents.
How to setup
Important: Clicking the ‘Deploy to Cloudflare’ button is only one part of the setup. You must follow the After deploying steps as well. For a full step-by-step guide with screenshots, refer to this comment: https://github.com/cloudflare/agentic-inbox/issues/4#issuecomment-4269118513
To set up
-
Deploy to Cloudflare. The deploy flow will automatically provision R2, Durable Objects, and Workers AI. You’ll be prompted for DOMAINS, which is the domain (yourdomain.com) you want to receive emails for ([email protected]).
-
Configure Cloudflare Access – Enable one-click Cloudflare Access on your Worker under Settings > Domains & Routes. The modal will show your
POLICY_AUDandTEAM_DOMAINvalues.TEAM_DOMAINcan be either your Access team URL or the full.../cdn-cgi/access/certsURL. You must set these as secrets for your Worker. -
Set up Email Routing – In the Cloudflare dashboard, go to your domain > Email Routing and create a catch-all rule that forwards to this Worker
-
Enable Email Service – The worker needs the
send_emailbinding to send outbound emails. See Email Service docs -
Create a mailbox – Visit your deployed app and create a mailbox for any address on your domain (e.g.
[email protected])
Troubleshooting Access
- If you see
Invalid or expired Access token, that usually meansPOLICY_AUDorTEAM_DOMAINsecrets are incorrect.- Resolution: turn Access off and back on for the Worker to get the Access modal again, then reset your Worker secrets to the latest
POLICY_AUDandTEAM_DOMAINvalues shown there.
- Resolution: turn Access off and back on for the Worker to get the Access modal again, then reset your Worker secrets to the latest
- If you see
Cloudflare Access must be configured in production, this application is intentionally enforcing Cloudflare Access so your inbox is not exposed to anyone on the internet.- Resolution: enable Access using one-click Cloudflare Access for Workers, then set the
POLICY_AUDandTEAM_DOMAINWorker secrets from the modal values.
- Resolution: enable Access using one-click Cloudflare Access for Workers, then set the
Features
- Full email client — Send and receive emails via Cloudflare Email Routing with a rich text composer, reply/forward threading, folder organization, search, and attachments
- Per-mailbox isolation — Each mailbox runs in its own Durable Object with SQLite storage and R2 for attachments
- Built-in AI agent — Side panel with 9 email tools for reading, searching, drafting, and sending
- Auto-draft on new email — Agent automatically reads inbound emails and generates draft replies, always requiring explicit confirmation before sending
- Configurable and persistent — Custom system prompts per mailbox, persistent chat history, streaming markdown responses, and tool call visibility
Stack
- Frontend: React 19, React Router v7, Tailwind CSS, Zustand, TipTap,
@cloudflare/kumo - Backend: Hono, Cloudflare Workers, Durable Objects (SQLite), R2, Email Routing
- AI Agent: Cloudflare Agents SDK (
AIChatAgent), AI SDK v6, Workers AI (@cf/moonshotai/kimi-k2.5),react-markdown+remark-gfm - Auth: Cloudflare Access JWT validation (required outside local development)
Getting Started
npm install
npm run dev
Configuration
- Set your domain in
wrangler.jsonc - Create an R2 bucket named
agentic-inbox:wrangler r2 bucket create agentic-inbox
Deploy
npm run deploy
Prerequisites
- Cloudflare account with a domain
- Email Routing enabled for receiving
- Email Service enabled for sending
- Workers AI enabled (for the agent)
- Cloudflare Access configured for deployed/shared environments (required in production)
Any user who passes the shared Cloudflare Access policy can access all mailboxes in this app by design. This includes the MCP server at /mcp – external AI tools (Claude Code, Cursor, etc.) connected via MCP can operate on any mailbox by passing a mailboxId parameter. There is no per-mailbox authorization; the Cloudflare Access policy is the single trust boundary.
Architecture
┌──────────────┐ ┌──────────────────┐ ┌─────────────────┐
│ Browser │────>│ Hono Worker │────>│ MailboxDO │
│ React SPA │ │ (API + SSR) │ │ (SQLite + R2) │
│ Agent Panel │ │ │ └─────────────────┘
└──────┬───────┘ │ /agents/* ──────┼────>┌─────────────────┐
│ │ │ │ EmailAgent DO │
│ WebSocket │ │ │ (AIChatAgent) │
└─────────────┤ │ │ 9 email tools │
│ │────>│ Workers AI │
└──────────────────┘ └─────────────────┘
License
Apache 2.0 – see LICENSE.
相似文章
@Fenng: 腾讯 QQ 邮箱 Agently Mail,为 Agent 定制的专属邮箱。 腾讯这是杀疯了 https://agent.qq.com
腾讯推出QQ邮箱的Agently Mail,专为AI Agent定制的专属邮箱服务。
@afly813: https://x.com/afly813/status/2061989786215444949
详细教程介绍如何利用Cloudflare的免费服务(Workers Pages、KV等)和免费域名,零成本搭建长期可用的网络代理节点,用于访问ChatGPT和Gemini等服务。
@gyro_ai: 自建邮件营销系统,大部分人第一反应是「太复杂了」 Github 上有个工具叫 listmonk,一个二进制文件搞定 Newsletter + 邮件列表管理,今天单日涨了 400 多 Star 评论区 GitHub 链接 20,779 St…
listmonk 是一个自托管的邮件营销系统,使用单个二进制文件部署,支持Newsletter和邮件列表管理,开源且无供应商锁定。
@realchendahuang: 基于cloudflare技术栈原生开发的笔记软件——FlareMo 注册一个免费的cloudflare账号,部署完以后就可以拥有10个G的文件存储、5个G的数据存储。 永久免费,装备不花一分钱,流量不花一分钱,数据多地备份,天生自带高可用…
FlareMo是一款基于Cloudflare技术栈原生开发的笔记软件,永久免费,支持Memos生态,可一键部署到Cloudflare Workers,提供10GB文件存储和5GB数据库存储。
@QingQ77: FlareMo — Cloudflare 原生的个人知识管理系统 https://github.com/realchendahuang/FlareMo… 一个运行在 Cloudflare Workers 上的个人笔记系统,利用 Cloud…
FlareMo是一个基于Cloudflare Workers的个人笔记系统,利用免费套餐实现零服务器运维,支持Flomo风格的时间线笔记、标签、附件、搜索等功能。