Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Validation] Issues with E-mail RegExp #3755

Closed
paulborza opened this issue Feb 25, 2016 · 8 comments
Closed

[Validation] Issues with E-mail RegExp #3755

paulborza opened this issue Feb 25, 2016 · 8 comments

Comments

@paulborza
Copy link

Try this email address hajdu [email protected] and it will validate fine according to Semantic UI, but the fact is that email address is invalid.

@Morrolan
Copy link
Contributor

@paulborza Is it validating the full thing or is it validating [email protected] and dropping the first part?

Can you create an example case in jsfiddle?

@paulborza
Copy link
Author

@Morrolan Here's the JS fiddle you asked for: https://jsfiddle.net/x0Lq0s8o/3/

You can reproduce the bug there per the 3-step instructions I've added.

@jlukic jlukic added this to the 2.2.x milestone Feb 27, 2016
@jlukic
Copy link
Member

jlukic commented Feb 27, 2016

Thanks a lot for filing this issue, and including an easy to understand test case. I've added a milestone, and will try to take a look as soon as I can.

@jlukic jlukic modified the milestones: 2.2, 2.2.x Mar 18, 2016
@jlukic jlukic changed the title Email validation fails for addresses with spaces [Validation] Issues with E-mail RegExp Mar 18, 2016
@ScopeyNZ
Copy link
Contributor

ScopeyNZ commented Apr 21, 2016

This is a lot worse than just spaces. It appears to return true if a valid email is at least part of the string. Try <script>alert('hello');</script>[email protected] - returns valid.

It appears the regex is missing the start and end delimiters ('^' & '$').

Try

(new RegExp("^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$", 'i')).test('[email protected]')

(I copied the code from the regex used in master)

I haven't really done any further testing on this but that appears to solve the issue.

I might work on PR for this and the requested "emails" validator this weekend.

@jlukic jlukic modified the milestones: 2.1.9, 2.2 Apr 22, 2016
@jlukic
Copy link
Member

jlukic commented Apr 22, 2016

I'd accept a PR here. Regex's related to emails appear to have been solved in the completely generalized case literally nowhere on the internet.

@Ryuno-Ki
Copy link

@jlukic Um, there are RegExes for this, but you don't want to build them by hand. The spec isn't easy to grasp so I'd suggest doing it the Perl way here.

@daneren2005
Copy link

daneren2005 commented Apr 25, 2016

I will weigh on what I am using since I found the default one to be worthless a long time ago:

var regex = new RegExp("^[a-zA-Z0-9!#$%&'+/=?^{|}~-]+(?:\.[a-zA-Z0-9!#$%&'_+/=?^_{|}~-]+)*@(?:a-zA-Z0-9?.)+a-zA-Z0-9?$");

This was to fix the old rule only requiring an email in the string instead of being the entire string (ie: The first example at the top) as well as it fixed not allowing upper cases in emails. On a production site I haven't seen any issues from this regex in quite a while, though I doubt it solves all problems with the default regex.

jlukic added a commit that referenced this issue Apr 28, 2016
jlukic added a commit that referenced this issue Apr 28, 2016
@jlukic jlukic modified the milestones: 2.1.9, 2.2 May 4, 2016
@jlukic
Copy link
Member

jlukic commented May 15, 2016

Fixed in #3955 with a reasonable email RegExp from @kevinresol. If there's any that don't pass that filter feel free to ping me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

6 participants