Normalization
How the normalized field collapses provider-specific aliases so duplicate signups map to one mailbox, and when subaddressing is set.
Loading article…
The normalized field returns a canonical mailbox string you can use for deduplication keys, uniqueness constraints, and fraud checks. EmailGuard applies provider-specific rules after syntax validation succeeds.
The companion boolean subaddressing is true when normalization changed the local part (for example stripping a +tag suffix). See Subaddressing for how to interpret that flag in signup flows.
Users create multiple account rows from one inbox:
[email protected] equals [email protected])[email protected])- or _ in addition to dotsWithout normalization, your database treats these as distinct people. EmailGuard returns one normalized value per logical mailbox, using provider-aware rules we maintain and expand over time.
Normalization runs only after syntax validation succeeds. For each address, EmailGuard:
We do not publish an exhaustive provider matrix; coverage improves as we add hosts and alias behaviors. Custom domains and most work email pass through with light canonicalization only.
Gmail with dots and a plus tag:
curl -sS \
-H "Authorization: Bearer YOUR_KEY" \
"https://emailguard.co/api/v1/emails/detect?email=jane.doe%2Bnewsletter%40gmail.com"{
"data": {
"email": "[email protected]",
"syntax_validation": true,
"normalized": "[email protected]",
"subaddressing": true,
"public_domain": true
}
}Corporate domain (no alias rules applied):
{
"data": {
"email": "[email protected]",
"syntax_validation": true,
"normalized": "[email protected]",
"subaddressing": false
}
}Plus addressing is widely implemented using the + delimiter described in RFC 5233 (Sieve — Subaddress Extension). Gmail dot aliasing is provider behavior, not an RFC requirement; we document it because it affects deduplication in production signup data.
The addr-spec grammar itself is defined in RFC 5322. Normalization happens after that parse step.
syntax_validation is false; normalized echoes the trimmed input instead.normalized for database unique indexes; keep the original email for audit trails and support lookups.