Does an MX record prove a mailbox exists?
No. MX records only name the servers that accept mail for a domain; they say nothing about individual mailboxes. Even a successful SMTP conversation is not conclusive, because large providers such as Gmail and Microsoft often accept mail at the SMTP stage and filter or drop it later. MX evidence answers a routing question, not an existence question.
What does a null MX record mean?
A null MX record, defined by RFC 7505, is a single record with preference 0 and an exchange of one dot. It deliberately declares that the domain accepts no email, and senders that honor it reject mail to that domain immediately rather than retrying. It is the correct setup for domains that should never receive mail.
Can an MX record point to a CNAME?
No. The exchange hostname must resolve directly to A or AAAA address records, not to a CNAME alias. Email standards prohibit aliases here, and senders that enforce the rule fail delivery. If your MX host is an alias, create a hostname with its own address records and point MX at that instead.
How long do MX changes take to propagate?
Propagation is governed by the TTL on the old records: until it expires, resolvers that cached the previous answer keep returning it, so changes take anywhere from minutes to a day or more. For a planned migration, lower the TTL in advance, change the records, then re-run an MX lookup after the old TTL passes to confirm.
Why does my domain receive mail without MX records?
RFC 5321 defines a fallback: when a domain has no MX records, senders try the domain's A or AAAA address. If that host runs a mail server, mail arrives anyway. It is fragile, though: some senders treat missing MX as undeliverable, you get no backup ordering, and moving your web host can break mail. Publish explicit MX records, or null MX if the domain should not receive mail.
What do MX preference numbers mean?
Preference numbers set the order senders try your mail servers: lower is more preferred, so 10 receives mail before 20. Equal preferences are interchangeable and used in any order, so backups should always carry a higher number than the primary or they take a share of normal traffic.
Does this MX lookup store or probe anything?
No. The tool performs one live DNS query and shows the published answer. It opens no SMTP connection, probes no mailbox, requires no login, and retains nothing you submit. The result is DNS evidence only, shown with its limitations and a link to RFC 5321.