1
0
mirror of https://github.com/kakwa/ldapcherry synced 2024-06-01 16:48:06 +02:00

Merge pull request #23 from jqueuniet/fix_email_regexp

Change the email regular expression to fix a few validation issues
This commit is contained in:
Carpentier Pierre-Francois 2019-03-20 18:33:19 +01:00 committed by GitHub
commit 3b58f1464e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -71,7 +71,7 @@ class Attributes:
raise MissingUserKey() raise MissingUserKey()
def _is_email(self, email): def _is_email(self, email):
pattern = r'[\.\w]{1,}[@]\w+[.]\w+' pattern = r'[\+\.\w]+@[-\.\w]+\.\w+'
if re.match(pattern, email): if re.match(pattern, email):
return True return True
else: else: