Selaa lähdekoodia

Update x509.adoc

Added Escaping for Adoc
sunflower-seed 6 vuotta sitten
vanhempi
commit
e26bb2b326

+ 1 - 1
docs/manual/src/docs/asciidoc/_includes/servlet/additional-topics/x509.adoc

@@ -46,7 +46,7 @@ The `subject-principal-regex` should contain a single group.
 For example the default expression "CN=(.*?)," matches the common name field.
 For example the default expression "CN=(.*?)," matches the common name field.
 So if the subject name in the certificate is "CN=Jimi Hendrix, OU=...", this will give a user name of "Jimi Hendrix".
 So if the subject name in the certificate is "CN=Jimi Hendrix, OU=...", this will give a user name of "Jimi Hendrix".
 The matches are case insensitive.
 The matches are case insensitive.
-So "emailAddress=(.?)," will match "EMAILADDRESS=jimi@hendrix.org,CN=..." giving a user name "jimi@hendrix.org".
+So "emailAddress=(+.*?+)," will match "EMAILADDRESS=jimi@hendrix.org,CN=..." giving a user name "jimi@hendrix.org".
 If the client presents a certificate and a valid username is successfully extracted, then there should be a valid `Authentication` object in the security context.
 If the client presents a certificate and a valid username is successfully extracted, then there should be a valid `Authentication` object in the security context.
 If no certificate is found, or no corresponding user could be found then the security context will remain empty.
 If no certificate is found, or no corresponding user could be found then the security context will remain empty.
 This means that you can easily use X.509 authentication with other options such as a form-based login.
 This means that you can easily use X.509 authentication with other options such as a form-based login.