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

推荐订阅源

G
Google Developers Blog
宝玉的分享
宝玉的分享
月光博客
月光博客
B
Blog
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
aimingoo的专栏
aimingoo的专栏
N
Netflix TechBlog - Medium
博客园_首页
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
A
About on SuperTechFans
Y
Y Combinator Blog
L
LangChain Blog
有赞技术团队
有赞技术团队
D
Docker
爱范儿
爱范儿
博客园 - 司徒正美
H
Hackread – Cybersecurity News, Data Breaches, AI and More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
酷 壳 – CoolShell
酷 壳 – CoolShell
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net

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
Put Your Agents on a Subdomain: Domain Isolation
Qasim Muhammad · 2026-06-15 · via DEV Community

Picture this: your outreach agent has a rough week — a stale prospect list, a few hundred hard bounces — and the following Monday, marketing asks why the company newsletter is suddenly landing in spam. Same domain, shared fate. The agent's deliverability problem just became everyone's deliverability problem, and untangling it takes far longer than preventing it would have.

The prevention is one DNS decision: put your agents on their own subdomain.

Why subdomain isolation works

Mail receivers score reputation per domain. Every sender on yourcompany.com — human employees, marketing tools, and your AI agents — deposits into and withdraws from the same reputation account. An autonomous agent is the riskiest depositor you have: it sends at machine speed, doesn't read the room, and a bug or a bad list can generate weeks' worth of damage in hours.

Hosting agents at agents.yourcompany.com splits the ledger. The agents build (and risk) their own reputation while your primary domain stays clean — and the provisioning docs recommend exactly this dedicated-subdomain pattern for production use. You keep the brand association people expect in an address, without the shared blast radius. There's an operational bonus too: any human can tell at a glance that scheduler@agents.yourcompany.com is automation, which is the kind of transparency that builds trust instead of eroding it.

The DNS setup

Agent Accounts (currently in beta) are hosted mailboxes, so pointing a subdomain at them is a standard domain registration. You register once per organization, picking the data center region — US or EU — where your application lives, and then create as many accounts under the domain as your plan allows. Two kinds of records do the work:

  • MX routes inbound mail for the subdomain to the hosted infrastructure, so the agents can receive.
  • TXT records prove you own the domain and carry the SPF/DKIM configuration that authenticates outbound mail.

The values are generated for you; you publish them at your DNS provider, and verification happens automatically once the records propagate — the domain status moves to verified and it's ready to host accounts. No certificate dance, no manual review.

From there, creating a mailbox on the subdomain is one call:

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",
    "settings": {
      "email": "sales-agent@agents.yourcompany.com"
    }
  }'

The response includes a grant_id that drives everything else — messages, calendar, webhooks. Unlike OAuth providers, there's no refresh token involved — just an email address on a registered domain. If you live in the terminal, the CLI covers the whole lifecycle:

# Create the account (optionally with IMAP/SMTP access from the start)
nylas agent account create sales-agent@agents.yourcompany.com
nylas agent account create sales-agent@agents.yourcompany.com --app-password "MySecureP4ssword!2024"

# Inspect the fleet
nylas agent account list --json
nylas agent status

# Tear down (--yes skips the confirmation prompt)
nylas agent account delete sales-agent@agents.yourcompany.com --yes

The app_password is what lets a human connect Outlook or Apple Mail to the agent's mailbox for supervision. It must be 18–40 printable ASCII characters with at least one uppercase letter, one lowercase letter, and one digit, and it's stored as a bcrypt hash — you can reset it later, never retrieve it. Omit it and protocol-level access stays disabled, which is the right default for agents nobody needs to log into.

Let the subdomain assign policy automatically

Subdomains aren't just a reputation boundary — they can be a governance boundary. Policies and rules attach to workspaces, and a workspace can carry a domain with auto_group: true: any new Agent Account whose address matches that domain joins the workspace automatically and inherits its policy limits, spam settings, and rules.

That turns the address itself into configuration. Create a workspace for agents.yourcompany.com with your production policy, another for agents.staging.yourcompany.com with tighter limits, and every account you provision lands under the right rules without anyone remembering to pass a workspace_id. Accounts that match nothing fall into your application's default workspace — attach a baseline policy there as the catch-all.

Prototype on a trial domain first

You don't need DNS access to start. Trial subdomains under *.nylas.email register from the Dashboard with no setup at all, giving you addresses like test@your-application.nylas.email immediately — the quickstart goes from API key to a sending-and-receiving mailbox in under 5 minutes that way.

Both strategies coexist in one application, and the common arc is exactly what you'd expect: prototype on the trial domain, prove the agent's behavior, then register the production subdomain before launch. The trial domain keeps experiments off any domain you care about — isolation all the way down.

Patterns beyond one subdomain

Once you treat domain layout as an isolation tool, more structure follows naturally:

  • Environment separation. agents.staging.yourcompany.com next to agents.yourcompany.com, on the same application, so load tests and integration suites never touch the production domain's reputation.
  • Reputation sharding. High-volume senders split across sales-a.yourcompany.com and sales-b.yourcompany.com, so trouble on one shard doesn't contaminate the other.
  • Per-customer domains. Multi-tenant products can register each customer's own domain and provision agents there — scheduling@customer-a.com — keeping every tenant's reputation in the tenant's hands. A single application manages accounts across any number of registered domains, so none of this multiplies your infrastructure.

These compose. A mature setup might run trial domains for development, a staging subdomain for CI, a production subdomain for first-party agents, and customer domains for tenant-facing ones — all one application, one API key, one code path.

Verify before you scale

Once the domain shows verified, prove the round trip before you point real traffic at it. Send a test email from any client to the new address, then list the mailbox:

curl --request GET \
  --url "https://api.us.nylas.com/v3/grants/$GRANT_ID/messages?limit=5" \
  --header "Authorization: Bearer $NYLAS_API_KEY"

If you've registered a message.created webhook, the notification should arrive within seconds of the SMTP handoff — the payload is identical in shape to message.created for any other grant, so branch on the grant's provider field ("nylas") if your handler also serves connected Gmail or Microsoft accounts. Then send a reply from the agent and confirm it lands back in your client. Three checks, and the subdomain is ready for production.

Set it up before you need it

Domain reputation is earned slowly and lost fast, which makes the subdomain decision much cheaper on day one than after an incident. The whole production setup is an afternoon: register agents.yourcompany.com, publish the MX and TXT records, wait for verification, and update one line in your provisioning script.

If your agents currently send from your primary domain, that's the move to schedule this sprint. And if you're just starting: which would your team rather explain later — a subdomain in the address, or a week of the company's mail in spam folders?