The SMIMEA record publishes S/MIME certificates in DNS for email encryption and signing. Defined in RFC 8162, it's the S/MIME equivalent of TLSA records, enabling automatic discovery of certificates for encrypted email.
Check SMIMEA records for any domain using our free DNS lookup tool.
Look Up SMIMEA Records →SMIMEA (S/MIME Certificate Association) records store S/MIME certificate information in DNS, allowing email clients to:
<hash>._smimecert.example.com. IN SMIMEA 3 0 1 abc123...sha256...
Similar to TLSA: Certificate Usage, Selector, Matching Type, Certificate Data.
| Field | Description | Values |
|---|---|---|
| Certificate Usage | How to use certificate | 0-3 |
| Selector | What part to match | 0 (full cert), 1 (public key) |
| Matching Type | How to match | 0 (exact), 1 (SHA-256), 2 (SHA-512) |
| Certificate Data | Certificate or hash | Hex-encoded data |
| Value | Name | Description |
|---|---|---|
| 0 | PKIX-TA | CA constraint (must chain to specified CA) |
| 1 | PKIX-EE | Service certificate constraint |
| 2 | DANE-TA | Trust anchor assertion |
| 3 | DANE-EE | Domain-issued certificate |
For email address [email protected]:
user._smimecert.example.com.# Example record name
29a5d...5c2f._smimecert.example.com. SMIMEA 3 0 1 ...
| Aspect | SMIMEA | OPENPGPKEY |
|---|---|---|
| Format | S/MIME (X.509) | OpenPGP |
| Infrastructure | PKI/CA-based | Web of Trust |
| Client support | Outlook, Apple Mail | GnuPG, Thunderbird |
| Enterprise use | More common | Less common |
; Most common: full certificate via DANE
29a5d...5c2f._smimecert.example.com. SMIMEA 3 0 1 <sha256-of-cert>
; Match public key (survives cert renewal)
29a5d...5c2f._smimecert.example.com. SMIMEA 3 1 1 <sha256-of-pubkey>
; Include entire certificate
29a5d...5c2f._smimecert.example.com. SMIMEA 3 0 0 <full-cert-hex>
echo -n "user" | sha256sum | cut -c1-56
# SHA-256 of DER-encoded certificate
openssl x509 -in cert.pem -outform DER | sha256sum
29a5d...5c2f._smimecert.example.com. 3600 IN SMIMEA 3 0 1 abc123...
Common issues and solutions:
DNS Explorer validates SMIMEA records, checks DNSSEC status, and tracks your email encryption certificates.
Start free DNS Explorer trial14-day full-feature trial
Use our DNS Record Finder to look up SMIMEA records for any domain.
Look Up SMIMEA Records →