Deliverability & Infra

Why Reputation Isolation Decides Deliverability

The Mythic Intel Team · Jan 27, 2026 · 7 min read

Reputation isolation decides deliverability because mailbox providers score reputation per sending identity, IP and domain, and they let a bad score on one identity drag down everything that shares it. If your password resets and your weekly promotional blast leave from the same IP and the same domain, a spike in spam complaints on the marketing stream lowers the reputation that your transactional mail depends on. Isolation is the practice of giving each stream its own identity so a problem on one cannot sink the others.

The two reputations that matter are IP reputation and domain reputation. IP reputation attaches to the sending address; domain reputation attaches to the From domain and the DKIM d= domain, and it follows the domain even if you change IPs. Providers evaluate both, which is why isolation has to happen at both layers, not just one.

Why One Bad Stream Sinks The Rest

Engagement and complaint rates differ wildly by stream. Transactional mail (order confirmations, password resets, receipts) gets opened immediately and almost never reported as spam. Marketing mail gets lower engagement and a higher complaint rate by its nature. When both share an IP or a domain, the provider sees one blended reputation, and the marketing stream's complaints are what drag the shared score down.

The failure mode is concrete: a campaign goes out, complaints rise, the provider drops the shared IP's reputation, and now password-reset emails start landing in spam or getting deferred. The transactional stream did nothing wrong and still got punished, because it borrowed an identity that the marketing stream had already damaged.

Subdomain Segmentation Is The First Move

The cleanest separation is per-subdomain, each with its own authentication. A common layout:

mail.example.com         transactional (receipts, resets, alerts)
marketing.example.com    campaigns, newsletters
notify.example.com       product and system notifications

Each subdomain publishes its own SPF, DKIM, and DMARC, so each builds and carries its own domain reputation:

mail.example.com.       IN TXT "v=spf1 include:_spf.transactional-vendor.com -all"
marketing.example.com.  IN TXT "v=spf1 include:_spf.esp-vendor.com -all"
mail._domainkey.mail.example.com.       IN TXT "v=DKIM1; k=rsa; p=MIGf..."
mail._domainkey.marketing.example.com.  IN TXT "v=DKIM1; k=rsa; p=MIGf..."

This also keeps each subdomain under its own SPF 10-lookup budget, since a separate subdomain gets a separate evaluation.

One caveat that people miss: subdomains inherit a small amount of reputation context from the parent organizational domain, but they build their own primary reputation. The protection only holds if the subdomains do not also share an IP. A separate From domain on the same warm-then-burned IP still gets dragged down by the IP score.

IP Isolation: Dedicated vs Shared

Domain segmentation alone is not enough if every stream still leaves from one IP. The IP layer needs the same logic.

  • Shared IPs pool your mail with other senders. Your reputation is partly hostage to strangers, and a noisy neighbor can hurt you. The upside is that the pool stays warm, which suits low and irregular volume where a dedicated IP would never accumulate enough sends to establish reputation.
  • Dedicated IPs give you full control and full responsibility. They make sense once a stream sends enough consistent volume to keep the IP warm and to generate a reputation the providers will actually score. A dedicated IP that sends a trickle never warms up and performs worse than a shared pool.

The practical pattern at scale is a dedicated IP (or a small dedicated pool) for the transactional stream, where consistent volume and high engagement build a strong score, and either a separate dedicated IP or a reputable shared pool for marketing, kept off the transactional IP entirely. The point is that the two streams never touch the same address.

What Providers Actually Watch

Reputation is built from signals the mailbox providers measure directly. The ones that move it:

  • Spam complaint rate. The fastest way to burn an identity. Keep it well under the thresholds providers publish; even a fraction of a percent sustained will degrade a stream.
  • Spam-trap hits and invalid recipients. Hitting pristine traps or sending to addresses that no longer exist signals poor list hygiene.
  • Engagement. Opens, replies, and the absence of immediate deletes raise reputation; consistent non-engagement lowers it.
  • Authentication alignment. SPF, DKIM, and DMARC that align with the sending identity are table stakes; without them the stream has no stable identity to accrue reputation against.

Google's Postmaster Tools is the canonical place to watch a Gmail-bound identity. Note that its v2 release retired the standalone IP and domain reputation dashboards; the signals to track now are Compliance Status and Spam Rate, plus third-party checks like Sender Score and the public blocklists.

The Isolation Checklist

  • Separate subdomains per stream, each with its own SPF, DKIM, and DMARC.
  • Transactional and marketing never share a sending IP.
  • Dedicated IPs only for streams with enough steady volume to stay warm; otherwise a reputable shared pool.
  • Per-stream monitoring so a complaint spike on marketing is visible before it spreads.
  • List hygiene on the marketing stream specifically, since that is where the complaint and trap risk lives.

Isolation is built on the same authentication primitives every mail engineer already knows. Mythic Intel itself was first assembled from its founder's own mail-infrastructure interview prep, so this is home turf: the depth that gets noticed in a deliverability interview is being able to explain, out loud and without notes, why a marketing complaint spike degrades password-reset delivery when both share an IP, and exactly which two layers, IP and domain, you would separate to prevent it.

your turn

Stop reading about interviews. Start training for yours.