You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR is about the current method used to conditionally match user and domain regex to email.
currently, it's using match which wrongfully accepts entries if domain has special characters after .com
Change email regex match to fullmatch
This PR is about the current method used to conditionally match user and domain regex to email.
currently, it's using match which wrongfully accepts entries if domain has special characters after .com
it currently accepts, john@voluptuous.com> or john!@voluptuous.org!@($*!
thus, we need to fullmatch the domain or user to avoid such entries and validate them properly.
The text was updated successfully, but these errors were encountered: