Confirm that email address does not exist (and thus is unable to receive messages)

Please note, this is different than confirming that address exists. Is there a way of proving that given email address is definitely unable to receive emails?

ie. with websites like

is there a 100% way of proving that certain address is unable to receive data?

3

3 Answers

The only case where you can be sure is if the domain name (the part behind the @ in the address) is invalid. For example if it is john@example.c this can never be delivered because .c is not and will never be a valid TLD. Therefore no one can have that domain and no one can set up a mail server with an IP where this domain points to.

Otherwise you can at most check the following:

  1. Is the domain valid right now? If it's not then no mail can be recieved at that address. But new TLDs come out ever so often. So some domains that are invalid now might become valid later then they might become used for email und your address might be used. For example the capital of Switzerland is Bern. They didn't get out an application for the TLD .bern to the ICANN in time, but there are people who want to try next time. So is invalid right now but might be used later.

  2. Is the domain valid but not registered to anyone yet? Then no mail can be received there for now. But it can always become registered and used later and if the timing is right the server might come online while your SMTP server is still retrying sending the mail regularly. For example is valid (yes, really .horse addresses exist) but the domain example.horse is not in use currently.

  3. Is the domain registered but no mail server responds there? Similar to above no mail can be received right now but a mail server might come online in a matter of minutes. For example my own domain has no mail server running but I could probably install a basic one in one or two hours, with some experience in the matter surely even less.

  4. Does a server responds but the response is "address unknown". That can either be true, no account with that name exists on the domain and the mail server drops your mail, or it can be true and the mail server redirects your mail into a catch-all account or it can be a lie and the server acts as if the account doesn't exist but in fact has the account and delivers your mail.

  5. A special case: Does the email address conform to standards (), e. g. is it within the allowed length (I don't exactly recall but I think it was somewhere under 300 characters) or does it contain only allowed characters. If it does not then it gets interesting. If your mail client and your SMTP server can handle it they might just try to still send out the mail even though the address is not standards conform. Now theoretically the receiving mail server could throw it out due to non compliance or it could act as if it had thrown it out but instead still deliver it. This case though is highly theoretical. Example: a"b(c)d,e:f;gi[j\k]

6

Not really. There are many things that can cause a false positive as well as false negatives.

Off the top of my head examples include: - Mail server temporarily down - Incorrectly configured spamfilter being way too aggressive - Server running properly, but mailbox isn't receiving it (Happened on my server because of a config-screwup)

The only true indication that an address is working as intended is getting a reply from it. And even that might be temporarily. On the flipside, any issue reported when you try to reach it can also be temporary.

The only exception that I can think of is if the domain simply doesn't exist.

No, there is no way.

Email server may accept emails and simply drop them.

PS: There are some cases when you can be 80% sure email does not exist at this moment.

  • Domain does not have MX record (there is no server to send emails to) < This is wrong. If there is no MX, mail delivery is attempted to the A record for the domain. Check the RFCs.

  • There is no SMTP server (nothing listens on port 25). How ever, server may temporary be down.

  • SMTP server explicitly reports you "there is no such mailbox". But some hacky server may return this error for anyone except some special clients.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like