We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://github.com/spring-projects/spring-security/blob/master/web/src/main/java/org/springframework/security/web/authentication/preauth/x509/SubjectDnX509PrincipalExtractor.java#L39
In the source from above and also in the documentation this example is mentioned:
emailAddress=(.?),
I believe this wont work, because an valid E-Mail consists of more than one character.
I propose to change it to
emailAddress=(.*?),
which works in my use case.
The text was updated successfully, but these errors were encountered:
@sunflower-seed Thanks for the report! Would you be interested in submitting a PR to fix this?
Sorry, something went wrong.
I'll have a look at it. May take some time.
Hopefully catched all occurencies and hopefully did all github !@!/$ right....
#5988
Thanks for the PR I merged your PR (#5770) and this is fixed in master and 5.1.x via 03a3a3b
rwinch
No branches or pull requests
https://github.com/spring-projects/spring-security/blob/master/web/src/main/java/org/springframework/security/web/authentication/preauth/x509/SubjectDnX509PrincipalExtractor.java#L39
In the source from above and also in the documentation this example is mentioned:
emailAddress=(.?),
I believe this wont work, because an valid E-Mail consists of more than one character.
I propose to change it to
emailAddress=(.*?),
which works in my use case.
The text was updated successfully, but these errors were encountered: