Skip to content

Home Topics Email Authentication DKIM

Email Authentication · DKIM

DKIM signing examples: what good and bad look like

Short answer

A good DKIM signing implementation follows these steps: Generate a 2048-bit key pair in your ESP or mail server (1024-bit keys are considered weak); Publish the public key as a TXT record at selector._domainkey.yourdomain.com. A bad one typically signing with the ESP's domain (d=esp.com) instead of yours, which passes DKIM but fails DMARC alignment.

DKIM (DomainKeys Identified Mail) adds a cryptographic signature header to each message. The public key lives in DNS under a selector, and receivers verify the signature to confirm the message was not altered and was authorized by the signing domain.

A correct example#

Example DKIM record
s1._domainkey.example.com.  IN TXT  "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA..."

Every element is there for a reason, and each maps to one of the setup steps below.

What good looks like#

  • Done: Generate a 2048-bit key pair in your ESP or mail server (1024-bit keys are considered weak).
  • Done: Publish the public key as a TXT record at selector._domainkey.yourdomain.com.
  • Done: Enable signing in the sending platform and confirm the d= tag in outgoing headers matches your organizational domain.
  • Done: Send a test to a seed address and inspect the Authentication-Results header for dkim=pass.
  • Done: Schedule key rotation every 6 to 12 months using a second selector so old mail still verifies.

What bad looks like#

  • Seen in audits: Signing with the ESP's domain (d=esp.com) instead of yours, which passes DKIM but fails DMARC alignment.
  • Seen in audits: Copying the public key with line breaks or quotes broken, producing a permanent verification failure.
  • Seen in audits: Modifying message bodies after signing (footers injected by gateways) which invalidates the signature.
  • Seen in audits: Never rotating keys, leaving a compromised key valid indefinitely.

How to move from bad to good#

Work through the good list in order and re-verify after each change. Most teams find one or two items from the bad list already present; fixing those usually produces the largest improvement.

Frequently asked questions#

What is a DKIM selector?

A label that lets one domain publish multiple keys. The selector appears in the s= tag and forms the DNS name selector._domainkey.domain.

Why does DKIM pass but DMARC fail?

Alignment. DMARC requires the d= domain to match the From header domain. If your vendor signs with their own domain, set up a custom DKIM domain with them.

Can I use one DKIM key for all my ESPs?

You can publish separate selectors per vendor. Never share private keys between platforms.

Analyse your own setup

All analysers
Technical analysis

DMARC record analyser

Grade a DMARC record on enforcement, not just syntax.

Runs in your browser
Technical analysis

DKIM key analyser

Check a DKIM public key's strength, revocation state, and tags.

Runs in your browser
Technical analysis

Email header analyser

Read authentication, DMARC alignment, and hop-by-hop delays from raw headers.

Runs in your browser

Keep reading on DKIM