Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to know how check if email address is valid without using link in email confirmation. How can I do this?

share|improve this question
1  
usually such ID's start with sxy_gurl71@... :) – Sunny Mar 2 '10 at 21:16
3  
Magic always works... – Will Mar 2 '10 at 21:18

5 Answers

up vote 20 down vote accepted

You can't, end of story.

Even using email confirmation only proves that the email address was valid at that time. It could then be shut down a second later!

Same for any other Internet based ID systems like OpenID, they can be set up and shut down just for the duration of the registration process. Even credit card ID can be one off since the invention of the disposable "debit" credit card.

Only government ID systems are likely to be valid for any length of time. There are major security implications when collecting and validating government ID's though, and it is different for each country.

It would be easier if all the governments could work together on one common system with a shared validation system including biometrics. Then Mossad couldn't steal passports so easily! They should set up a global community to organise it, maybe they could call it the UN? It shouldn't take long to sort out :-)

share|improve this answer

You can't. There's a reason everyone does it like that. But you could use OpenID instead.

share|improve this answer

There's no way to know if an email address is fake.

But you can:

  • Check if the address domain exists
  • Send an email to the address with a confirmation key to be returned
share|improve this answer
1  
when you say "check if the address exists", do you mean waiting for a response from the server telling you there is no such email address? – FrustratedWithFormsDesigner Mar 2 '10 at 21:11
actually I meant checking if the address domain exists. I edited the answer to make it clearer. – rogeriopvl Mar 2 '10 at 21:17

You can't make sure if an email id is fake or real, but you can check if the mail has come from an original server or not.

For example: if the mail id is xyz@google.com then it should come from google server, but if it comes from some other server then it has a high probability of being fake. You can check the original code of email, in gmail,hotmail show original option shows full code,and in yahoo you can see the code in option show header.

share|improve this answer

You can try by coding an application that simply do a reverse lookup for domain, once ok send a test email and check for the right reply codes. There is also a verify VRFY command in last SMTP protocol specs RFC-5321, check here http://tools.ietf.org/html/rfc5321#section-3.5.2

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.