-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
fixed jirav1 detector email pattern #3826
base: main
Are you sure you want to change the base?
fixed jirav1 detector email pattern #3826
Conversation
@@ -16,7 +16,7 @@ var ( | |||
invalidTokenPattern = "Z7VoI?J0K4rF#LBfkhO&LAWX" | |||
validDomainPattern = "hereisavalidsubdomain.heresalongdomain.com" | |||
invalidDomainPattern = "?y4r3fs1ewqec12v1e3tl.5Hcsrcehic89saXd.ro@" | |||
validEmailPattern = "xfKF_BZq7@grum.com" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kashifkhan0771 Not sure but the old input is also valid email and should pass the user case.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Our common email pattern is not configured to capture capital letters. I guess we need a small enhancement in the common email pattern. Including flag (?i)
in start will work.
Thoughts @abmussani @zricethezav @ahrav ?
Description:
This PR fixes the github issue #3818
Checklist:
make test-community
)?make lint
this requires golangci-lint)?