AuthInbox
Auth Inbox 📬 is a self-hosted, open-source platform for receiving multiple email verification codes and real-time notifications, built using Cloudflare's free services. | Auth Inbox 📬 是一个自建的开源多邮箱验证码的接码平台,基于 Cloudflare 的免费服务。
Install / Use
/learn @TooonyChen/AuthInboxREADME
Auth Inbox 📬
Auth Inbox is an open-source, self-hosted email verification code platform built on Cloudflare's free serverless services. It automatically processes incoming emails, filters out promotional mail before hitting the AI, extracts verification codes or links, and stores them in a database. A modern React dashboard lets administrators review extracted codes, inspect raw emails, and render HTML email previews — all protected by Basic Auth.
Don't want ads and spam in your main inbox? Need a bunch of alternative addresses for signups? Try this secure, serverless, lightweight service!
flowchart LR
A([Your Inboxes]) --> B[Email Worker]
B --> C{Promotional?}
C -->|Yes| D[Discard]
C -->|No| E[AI Extraction]
E --> F[(D1 Database)]
F --> G[React Dashboard]
F --> H([Bark iOS Push])
Table of Contents 📑
Features ✨
- Promotional Filter: Detects and skips bulk/marketing emails via headers (
List-Unsubscribe,Precedence: bulk, etc.) before calling the AI — saves tokens. - AI Code Extraction: Uses Google Gemini (with OpenAI as fallback) to extract verification codes, links, and organization names.
- Modern Dashboard: React 18 + shadcn/ui interface with mail list, detail panel, and three tabs — Extracted, Raw Email, Rendered HTML preview.
- Safe HTML Preview: Email HTML is sanitized with DOMPurify and rendered in a sandboxed iframe.
- One-click Copy: Verification codes and links have copy buttons with toast confirmation.
- Real-Time Notifications: Optionally sends Bark push notifications when new codes arrive.
- Database: Stores all raw emails and AI-extracted results in Cloudflare D1.
Technologies Used 🛠️
- Cloudflare Workers — Serverless runtime for email handling and API.
- Cloudflare D1 — SQLite-compatible serverless database.
- Cloudflare Email Routing — Routes incoming emails to the Worker.
- React 18 + Vite + Tailwind CSS + shadcn/ui — Frontend dashboard.
- Any OpenAI-compatible / Anthropic AI provider — Configurable via env vars; Gemini, OpenAI, DeepSeek, Groq, Anthropic, and more.
- Bark API — Optional iOS push notifications.
- TypeScript — End-to-end type safety.
Installation ⚙️
Prerequisites
- A Google AI Studio API key
- A domain bound to your Cloudflare account
- Cloudflare Account ID and API Token from here
- (Optional) Bark App for iOS push notifications
Option 1 — Deploy via GitHub Actions
-
Create D1 Database
Go to Cloudflare Dashboard →
Workers & Pages→D1 SQL Database→Create. Name itinbox-d1.Open the database →
Console, paste and run the contents ofdb/schema.sql.Copy the
database_idfor the next step. -
Fork & Deploy
In your forked repository, go to
Settings→Secrets and variables→Actionsand add:CLOUDFLARE_ACCOUNT_IDCLOUDFLARE_API_TOKENTOML— use the comment-free template to avoid parse errors.
Then go to
Actions→Deploy Auth Inbox to Cloudflare Workers→Run workflow.After success, delete the workflow logs to avoid leaking your config.
-
Jump to Set Email Forwarding.
Option 2 — Deploy via CLI
-
Clone and install
git clone https://github.com/TooonyChen/AuthInbox.git cd AuthInbox pnpm install -
Create D1 database
pnpm wrangler d1 create inbox-d1 pnpm wrangler d1 execute inbox-d1 --remote --file=./db/schema.sqlCopy the
database_idfrom the output. -
Configure
cp wrangler.toml.example wrangler.tomlEdit
wrangler.toml— at minimum fill in:[vars] FrontEndAdminID = "your-username" FrontEndAdminPassword = "your-password" UseBark = "false" # AI provider — choose any compatible service AI_BASE_URL = "https://generativelanguage.googleapis.com/v1beta/openai" AI_API_KEY = "your-api-key" AI_API_FORMAT = "openai" AI_MODEL = "gemini-2.0-flash" [[d1_databases]] binding = "DB" database_name = "inbox-d1" database_id = "<your-database-id>"AI_API_FORMAToptions:| Value | Endpoint | Compatible providers | |---|---|---| |
openai|/v1/chat/completions| OpenAI, Gemini (OpenAI-compat), DeepSeek, Groq, Mistral, … | |responses|/v1/responses| OpenAI Responses API | |anthropic|/v1/messages| Anthropic Claude |Common
AI_BASE_URLvalues:OpenAI: https://api.openai.com Gemini (OAI-compat): https://generativelanguage.googleapis.com/v1beta/openai Anthropic: https://api.anthropic.com DeepSeek: https://api.deepseek.com Groq: https://api.groq.com/openaiOptional fallback provider (triggered if primary fails after 3 retries):
# AI_FALLBACK_BASE_URL = "https://api.openai.com" # AI_FALLBACK_API_KEY = "your-fallback-key" # AI_FALLBACK_API_FORMAT = "openai" # AI_FALLBACK_MODEL = "gpt-4o-mini"Optional Bark vars:
barkTokens,barkUrl. -
Build and deploy
pnpm run deployOutput:
https://auth-inbox.<your-subdomain>.workers.dev
3. Set Email Forwarding ✉️
Go to Cloudflare Dashboard → Websites → <your-domain> → Email → Email Routing → Routing Rules.
Catch-all (forwards all addresses to the Worker):
Custom address (forwards a specific address):
4. Done! 🎉
Visit your Worker URL, log in with the credentials you set, and start receiving verification emails.
License 📜
Screenshots 📸



Acknowledgements 🙏
- Cloudflare Workers for the serverless platform.
- Google Gemini AI for intelligent email extraction.
- Bark for real-time notifications.
- shadcn/ui for the component library.
- Open Source Community for the inspiration.
TODO 📝
- [x] GitHub Actions deployment
- [x] OpenAI fallback support
- [x] React dashboard with shadcn/ui
- [x] Promotional email filter (skip ads before LLM)
- [x] Raw email viewer + sandboxed HTML preview
- [ ] Regex-based extraction as an AI-free option
- [ ] Multi-user support
- [ ] More notification methods (Slack, webhook, etc.)
- [ ] Sending email support
Related Skills
healthcheck
342.5kHost security hardening and risk-tolerance configuration for OpenClaw deployments
node-connect
342.5kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
prose
342.5kOpenProse VM skill pack. Activate on any `prose` command, .prose files, or OpenProse mentions; orchestrates multi-agent workflows.
frontend-design
85.3kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
