Authentication proves identity, not placement.
SPF, DKIM, and DMARC can all pass. The message can still land somewhere no one will see it. Nothing is broken in that sentence.
By Moosewave
Published · 9 min read

The short version
Authentication answers “who?” Placement asks “where?”
- 01SPF asks whether the connecting server is authorized for the envelope-sender domain.
- 02DKIM asks whether a valid domain-linked signature survived the journey.
- 03DMARC asks whether an SPF or DKIM pass aligns with the domain people see in the From address.
- 04Inbox placement remains a later judgment about reputation, recipient expectation, behavior, and risk.
A passport is not a promise of entry
The useful thing about a passport is that it narrows an identity question. It does not promise that every border will admit you, much less choose your seat after you arrive.
Email authentication works in the same general shape. It gives the receiving system evidence that a domain authorized a sending path or took responsibility for a signed message. DMARC then connects that evidence to the domain visible in the From address.
Those are important facts. Without them, a mailbox provider has less reason to believe the message is what it claims to be. But authentication says nothing by itself about whether the recipient asked for the message, whether people report similar mail as spam, or whether the sender suddenly multiplied its volume.
Authentication answers “who is responsible?” Placement asks “should this message be visible here?”
This continues the distinction in our previous field note, Delivery is a receipt, not a result. Server acceptance is one checkpoint. Authentication is another. Neither is the destination.
Three checks, three different claims
SPF, DKIM, and DMARC are often displayed as one green block. That presentation is convenient and conceptually expensive. Each mechanism observes a different identifier and proves a narrower thing.
| Check | What it examines | What a pass supports | What it does not prove |
|---|---|---|---|
| SPF | Connecting IP and envelope-sender domain | That domain authorizes this sending path | Visible From alignment or wanted mail |
| DKIM | Signature, signing domain, and signed content | A valid domain-linked signature survived | Consent, reputation, or inbox placement |
| DMARC | Visible From domain plus aligned SPF or DKIM | Authorized use of the visible author domain | That the message is safe, useful, or wanted |
| Placement | Provider-specific filtering and mailbox context | An observed destination for this message | That every recipient saw or acted on it |
SPF: permission from one angle
SPF lets a domain publish which systems may send mail using that domain in the SMTP envelope. The receiver compares the connecting IP with that policy. This is why forwarding can break SPF: the forwarder becomes the connecting system even though the original message may be legitimate.
A passing SPF result can still be unrelated to the address a person sees. DMARC is the layer that asks whether the authenticated SPF domain aligns with the visible From domain.
DKIM: signed responsibility
DKIM adds a cryptographic signature tied to a domain. The signature covers selected headers and the message body. If verification succeeds, the receiver knows the signed content has not changed beyond what the signature permits and that the signing domain took responsibility for it.
DKIM often survives forwarding because the signature travels with the message, but transformations can invalidate it. A valid signature is still not a character reference. A bad actor can sign bad mail with a domain it controls.
DMARC: alignment and a published policy
DMARC starts with the domain in the visible From address. It passes when at least one authenticated SPF or DKIM identifier aligns with that author domain under the published alignment mode. It also lets a domain owner request handling for failures and receive aggregate reports.
The current DMARC standard is unusually clear about the boundary: a pass validates authorized use of the author domain. It does not guarantee that inbox delivery would be safe or desirable. In other words, the standard itself tells us not to confuse authentication with placement.
Why authenticated email still goes to spam
Once identity is credible, the provider can make the harder decision. Is this stream wanted? Does it behave like mail recipients value? Does it create risk?
Google’s sender guidance treats authentication as one part of a larger operating system that also includes DNS, TLS, message format, spam complaints, subscription practices, unsubscribe behavior, and gradual, consistent volume. Microsoft and Yahoo similarly pair authentication with list hygiene, complaint control, truthful headers, and usable opt-out paths.
This explains an otherwise puzzling result. A sender repairs SPF, rotates DKIM keys, publishes DMARC, sees three passes, and expects placement to recover immediately. The identity layer is healthier, but reputation and recipient response still contain history. A correct passport does not erase a record of unwelcome visits.
Placement is also contextual. A provider may treat different streams, domains, IPs, recipients, and recent sending patterns differently. That is why a single personal inbox is a weak diagnostic. Controlled seed observations across the providers that matter are more useful, as long as the result is described as a sample rather than a universal fact.
Our guide to email deliverability and inbox placement explains that wider decision system. The interactive Moosewave walkthrough shows how placement evidence fits beside campaign events.
Use the right diagnostic order
When mail disappears, teams often change everything at once: DNS, content, cadence, audience, and infrastructure. Then the result improves or worsens, and no one knows why.
- 01
Verify the message, not just the DNS record
Inspect Authentication-Results on representative mail. Confirm SPF and DKIM pass where expected and that at least one aligns with the visible From domain for DMARC.
- 02
Read the receiving response
Separate rejection, temporary deferral, and acceptance. Provider response codes often reveal whether the immediate problem is authentication, policy, reputation, or rate.
- 03
Observe placement by provider
Use maintained seed mailboxes across the provider mix that matters. Compare inbox, tabs, junk, and missing outcomes without claiming the sample represents every recipient.
- 04
Check the audience and feedback loop
Review consent source, recent engagement, complaints, bounces, suppressions, and one-click unsubscribe behavior. Authentication cannot repair a mismatched audience.
- 05
Change one operating variable
Adjust a stream, segment, cadence, or message with a stated hypothesis. Keep authentication stable while measuring whether the placement evidence changes.
The audience layer matters as much as the infrastructure layer. Our audience segmentation guide covers eligibility and suppression, while the analytics guide separates observable events from inference.
The product consequence
Software tends to turn a set of green checks into a green conclusion. This is comforting and often wrong.
In Moosewave, authentication should be visible as its own evidence: which mechanism passed, which identifier authenticated, and whether it aligned. Placement should remain a separate observation. Recipient behavior and business outcomes should remain separate again.
Keeping these facts adjacent but unmerged makes diagnosis faster. If authentication fails, fix identity and alignment. If authentication passes but placement degrades, investigate reputation, audience quality, complaint signals, volume, and provider patterns. If placement is healthy but action is weak, stop editing DNS.
That is also a security boundary. Our security page explains how Moosewave describes controls without stretching a technical fact into a broader promise. The same habit belongs in campaign reporting.
A good system does not merely show more data. It keeps one true fact from impersonating another.
Frequently asked questions
Direct answers to the questions hidden inside a row of green authentication checks.
Does passing SPF, DKIM, and DMARC guarantee inbox placement?
No. A pass gives the receiving system evidence about authorization, message integrity, and domain alignment. The provider still makes a separate placement decision using reputation, complaints, recipient expectations, sending patterns, and other signals.
Can an email pass DKIM and still go to spam?
Yes. DKIM verifies a domain-linked signature over selected parts of the message. It does not certify that the message was requested, useful, safe, or likely to be wanted by this recipient.
Why can SPF fail after forwarding?
SPF normally evaluates the connecting server against the envelope sender domain. A forwarder changes the connecting server, so that new server may not be authorized by the original domain even though the forwarded message is legitimate.
Is DMARC enough for email deliverability?
DMARC is essential domain-protection and authentication infrastructure, but it is not a complete deliverability strategy. Consent, list health, complaint rates, volume changes, sender reputation, message design, and observed placement still matter.
Sources & method
Primary references
Protocol claims come from the standards themselves. Current operational requirements come from provider documentation. The diagnostic order is Moosewave’s synthesis.
- RFC Editor — RFC 7208: Sender Policy Framework. Defines SPF authorization and evaluation against the SMTP client and envelope identity.
- RFC Editor — RFC 6376: DomainKeys Identified Mail. Defines DKIM signatures, verification, and domain responsibility.
- RFC Editor — RFC 9989: DMARC. Defines author-domain alignment, pass and fail results, policy, and the explicit limit of what a pass means.
- Gmail Help — Email sender guidelines. Documents current authentication, complaint, subscription, DNS, TLS, and sending-practice requirements.
- Yahoo Sender Hub — Sender best practices. Provider guidance on authentication, complaints, list health, and sending behavior.
- Microsoft — Outlook requirements for high-volume senders. Official authentication and email-hygiene requirements for qualifying Outlook.com sending domains.
Last reviewed 31 July 2026. Provider requirements change; verify the linked guidance before making an operational change.
Continue reading
Follow the message one checkpoint back
The previous field note separates server acceptance from placement, attention, and action. Read it next, or inspect the wider deliverability system.