Where does email sent to *@example.com go? [closed]

If you attempt to send an email to *@example.com

  1. Your SMTP will check the domain exists.
  2. Your SMTP server will lookup for a MX record at example.com.
  3. There is none: Your SMTP will fall back on the A record. The IP is 174.137.125.92 (as of today)
  4. The IANA has registered the domain, but has not set up a SMTP server listening on port 25 on 174.137.125.92.
  5. Then the behaviour depends on your SMTP. Most servers will send you a warning, and try again later. Eventually (usually in 3 days), the SMTP will discard the message and send you a notification of failure.

Bottom line: It depends on your own configuration. But if IANA set up a server today, they might be able to receive messages you tried to send 3 days ago.

Leave a Comment