I'm trying to come up with the options on the service side and client side, and what options exist in the Rails environment already. I feel like our CTO is more inclined to go with what other tech companies are using on the mobile apps.
Ask HN: What is the norm for email validation?
1–10 of 18 posts
Re: Ask HN: What is the norm for email validation?
#2Re: Ask HN: What is the norm for email validation?
#3What about passwordless, email-based login? It's easier than username/password login, it verifies the email address, and it provides the same level of security (assuming password can be reset via emailed link).
Re: Ask HN: What is the norm for email validation?
#4"On the Futility of Email Regex Validation"
Re: Ask HN: What is the norm for email validation?
#5Related (was on Hacker News) "On the Futility of Email Regex Validation" https://jackfoxy.github.io/FsRegEx/emailregex.html
Re: Ask HN: What is the norm for email validation?
#6What about passwordless, email-based login? It's easier than username/password login, it verifies the email address, and it provides the same level of security (assuming password can be reset via emailed link).
Re: Ask HN: What is the norm for email validation?
#7What about passwordless, email-based login? It's easier than username/password login, it verifies the email address, and it provides the same level of security (assuming password can be reset via emailed link).
Cool concept, but would require a complete revamp of our sessions infrastructure....I am looking to slap something on to our codebase to check email formatting after the '@' symbol.
The following may not work for your use case and I'm no expert in the area, but it could be possible to write a simple shell script to dig the mx records, and fail out if there's no such, and if you wanted to go a step further, you could open SMTP, and fail out if you can't, and if you wanted to go a step further you could even on the mx maybe even do a direct ping or some other lookup of the address part in that session, so long as the server is not a catchall. I feel the total bandwidth outlay would be no more then a small http roundtrip. Tho you might get a bit of hit on the connection time, or retries, as my feeling is not all SMTP hosts are speedy. Thanks
Re: Ask HN: What is the norm for email validation?
#8Re: Ask HN: What is the norm for email validation?
#9Send the user a verification mail.