Unable to route — no route to destination
Production Risk
Medium — indicates bad data in your contact list if occurring frequently.
The sending MTA cannot determine how to route the message to its destination. This is a permanent failure indicating that no valid mail route exists for the recipient domain.
- 1The recipient domain has no MX records and no A record fallback.
- 2The domain does not exist in DNS.
- 3A routing loop or misconfiguration in the sending MTA's transport map.
The MTA's DNS lookup for the destination domain returns no usable MX or A records.
# MTA log: Host or domain name not found. Name service error for domain example.invalid # Bounce DSN: 550 5.4.4 Unable to route: Domain not found
expected output
550 5.4.4 ...
Fix
Verify domain existence and MX configuration
WHEN Receiving a 5.4.4 bounce
# Check domain DNS: dig A example.com dig MX example.com # Check NXDOMAIN vs NOERROR (no records): nslookup example.com
Why this works
Distinguishing between a non-existent domain (NXDOMAIN) and a domain with no mail records helps determine the correct resolution.
✕ Retry a 5.4.4 without verifying the domain
If the domain does not exist, no amount of retrying will result in delivery.
RFC 3463 — Enhanced Mail System Status Codes
Content generated with AI assistance and reviewed for accuracy. Found an error? hello@errcodes.dev