惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
腾讯CDC
阮一峰的网络日志
阮一峰的网络日志
博客园_首页
Last Week in AI
Last Week in AI
月光博客
月光博客
D
DataBreaches.Net
WordPress大学
WordPress大学
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
U
Unit 42
Recent Announcements
Recent Announcements
宝玉的分享
宝玉的分享
MyScale Blog
MyScale Blog
C
Check Point Blog
F
Fortinet All Blogs
B
Blog
小众软件
小众软件
Vercel News
Vercel News
罗磊的独立博客
有赞技术团队
有赞技术团队

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Scaling to Thousands of Agent Mailboxes
Qasim Muhammad · 2026-06-16 · via DEV Community

Week one: a single test mailbox on a trial domain, provisioned by hand from the dashboard. Week twelve: a fleet of agent mailboxes spread across customer domains, each sending real mail with its own quota and reputation. The API calls are the same at both scales — what changes is everything around them: how you provision, how you share configuration, and how you keep one bad sender from pausing the fleet.

Here's what the path from one to thousands looks like with Nylas Agent Accounts, which are currently in beta.

Provisioning is a loop, not a ceremony

There's no OAuth dance to scale around. Creating a mailbox is one POST with "provider": "nylas" — no refresh token, no consent screen — so a fleet provisioner is just iteration:

curl --request POST \
  --url "https://api.us.nylas.com/v3/connect/custom" \
  --header "Authorization: Bearer <NYLAS_API_KEY>" \
  --header "Content-Type: application/json" \
  --data '{
    "provider": "nylas",
    "workspace_id": "<WORKSPACE_ID>",
    "settings": {
      "email": "agent-0042@agents.yourcompany.com"
    }
  }'

Two scaling-relevant details in that request. First, the domain: one application can manage accounts across any number of registered domains, and the docs explicitly recommend splitting high-volume outbound across multiple domains (sales-a.yourcompany.com, sales-b.yourcompany.com) so reputation damage on one doesn't contaminate the rest. Second, the workspace_id: passing it at creation is how each account picks up its configuration, which brings us to the part that makes fleets manageable.

Configure workspaces, not grants

At fleet scale, per-grant configuration is a non-starter. The model here is indirection: policies and rules attach to workspaces, and every account in a workspace inherits them. One policy object — daily send quota, storage cap, retention windows, spam sensitivity — governs a thousand mailboxes, and updating it updates all of them at once.

The recommended carve-up is one workspace per agent archetype: outreach agents get a workspace with high send quotas and strict outbound rules; triage agents get one with aggressive spam filtering and modest quotas. With auto_group enabled, new accounts join the right workspace by email domain automatically, so your provisioner can't misfile them.

Allow/block lists scale the same way. A list holds domains, TLDs, or addresses; rules reference it through in_list; and you can add up to 1,000 items per request. Update the list and every rule referencing it picks up the change immediately — no redeploys, and non-engineers can own the contents.

The thresholds that actually gate scale

Send volume isn't the hard limit; deliverability is. The platform tracks each account's rolling bounce and complaint rates against recent send volume, and the thresholds are unforgiving at fleet scale:

Signal Healthy Under review Sending paused
Bounce rate Under 2% 5% 10%
Complaint rate Under 0.1% 0.1% 0.5%

Only hard bounces count — full mailboxes and greylisting don't — and the denominator is a recent representative send volume, not a fixed time window, so the rate stays meaningful at any scale. But a paused account doesn't resume on a timer: clearing a pause requires contacting support with the cause and the fix. Multiply that by a fleet and the lesson is obvious: you want your own circuit breakers tripping before the platform's do.

"Under review" is silent to your application — sending continues. A pause is not: outbound send requests start failing with a 400 Bad Request carrying text from the underlying infrastructure about the account being suspended or paused. Fleet send paths should recognize that shape, alongside the more mundane 400 for "domain is not verified" (a provisioning step got skipped) and 429 for "rate limit exceeded".

On quotas: the free plan allows 200 messages per account per day, paid plans have no daily cap by default, and a policy can set a stricter per-account quota. At fleet scale that policy quota doubles as a cheap circuit breaker — a runaway agent hits its own ceiling long before it can damage the domain's reputation.

The docs hand you the telemetry for exactly that. Four webhook triggers — message.transactional.delivered, .bounced, .complaint, and .rejected — carry the same events the rates are computed from. Wire them into your own per-account counters and pause your outbound logic when an account trends toward 5% bounces. You'll see the problem in your own metrics before enforcement does.

The other enforcement path is the abuse restriction: a 403 with send blocked by abuse restriction, applied by the Nylas operations team rather than by a threshold. Restrictions can scope to a single sender address, a sender domain (including its subdomains), an organization, an application, or one specific grant — the most specific match applies. The application-level case is the one that matters for fleets: it stops every Agent Account under the application, not just the misbehaving one. Recovery means contacting support with the application ID, the grant ID, and one example error response; once the restriction is lifted, sends succeed on the next attempt with no propagation delay. Fleet code should treat 429 and 403 as first-class states, not exceptions to log and forget.

The boring hygiene matters too, because the complaint threshold is tiny — at low volume, a handful of recipients clicking "mark as spam" can put an account under review at 0.1%. Validate recipient addresses before sending, skip anything that has hard-bounced before, honor unsubscribes immediately, use double opt-in for lists you care about, and get DKIM, SPF, and DMARC right on every domain — misconfigured authentication shows up as extra hard bounces from servers that refuse the mail outright.

Webhook fan-in is free

The receiving side scales more gracefully than you'd expect, because webhook subscriptions are application-level, not per-grant. One message.created subscription covers every mailbox in the fleet; each payload carries the grant_id, so your handler routes by grant. There's no per-mailbox registration step in the provisioning loop and no subscription cleanup in the teardown path.

That makes the consumer architecture the standard one for any high-volume webhook source: receive, enqueue keyed by grant_id, process from the queue. Nothing exotic — the point is that the per-account overhead on the inbound path is zero.

A scaling checklist

Condensed from the three docs above:

  1. Split outbound across dedicated subdomains; never share reputation with your primary domain.
  2. Create one workspace per agent archetype; attach a policy before the first account, not after.
  3. Pass workspace_id in every provisioning call; treat auto_group as a backstop.
  4. Subscribe to the four message.transactional.* triggers and build per-account bounce/complaint counters from day one.
  5. Handle 429 and 403 as expected states in your send path.
  6. Manage allow/block values in lists, not inline rule conditions.

If you're sketching a fleet right now, start with the workspace layout — it's the one decision that's annoying to retrofit. What's your target mailbox count, and which threshold worries you more: the 0.5% complaint pause or the application-wide abuse block?