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

email regular expression is not suitable. #3

Closed
unchannam-xx opened this issue Dec 27, 2017 · 2 comments
Closed

email regular expression is not suitable. #3

unchannam-xx opened this issue Dec 27, 2017 · 2 comments

Comments

@unchannam-xx
Copy link

like the following figure, if I input xxxxx@adfsuat.local, it will say "Email not correctly formatted" and not allow me to save.
You can reference the suitable email regular expression format in here: http://emailregex.com/

thanks.

image

@unchannam-xx unchannam-xx changed the title email format should not limit the character length after the last dot (.) email regular expression is not suitable. Dec 27, 2017
@redhook62
Copy link
Member

Yes,

Extension is limited in javascript to 3 characters, we will ship an update quickly to remove this limitation.
Remember that the email address must a personal email (aka : gmail.com, live.com, etc...), this email must not be suitable with MFA access.
Regex has to be changed
From : ^\w+([.-]?\w+)@\w+([.-]?\w+)(.\w{2,3})+$
To : ^\w+([.-]?\w+)@\w+([.-]?\w+)(.\w{2,})+$

Thanks

@redhook62
Copy link
Member

Release 2.0.2.963

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

2 participants