This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 8dd981aa3d5e74d84d5f891c06a0731a11e0eb02 Author: ouvtam <[email protected]> AuthorDate: Mon Oct 24 11:15:27 2022 +0200 [JAMES-1516] fix xml escape in documentation --- src/site/xdoc/server/config-ssl-tls.xml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/site/xdoc/server/config-ssl-tls.xml b/src/site/xdoc/server/config-ssl-tls.xml index a991cee7de..1cbdae8924 100644 --- a/src/site/xdoc/server/config-ssl-tls.xml +++ b/src/site/xdoc/server/config-ssl-tls.xml @@ -77,17 +77,17 @@ Otherwise, the default protocols and cipher suites of the used JDK will be used.</p> <source> <tls socketTLS="false" startTLS="false"> - <supportedCipherSuites> - <cipherSuite>TLS_AES_256_GCM_SHA384</cipherSuite> - <cipherSuite>TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256</cipherSuite> - </supportedCipherSuites> - <supportedProtocols> - <protocol>TLSv1.2</protocol> - <protocol>TLSv1.1</protocol> - <protocol>TLSv1</protocol> - <protocol>SSLv3</protocol> - </supportedProtocols> - </tls> + <supportedCipherSuites> + <cipherSuite>TLS_AES_256_GCM_SHA384</cipherSuite> + <cipherSuite>TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256</cipherSuite> + </supportedCipherSuites> + <supportedProtocols> + <protocol>TLSv1.2</protocol> + <protocol>TLSv1.1</protocol> + <protocol>TLSv1</protocol> + <protocol>SSLv3</protocol> + </supportedProtocols> +</tls> </source> <p>Each of these block has an optional boolean configuration element <b>socketTLS</b> and <b>startTLS</b> which is used to toggle use of SSL or TLS for the service.</p> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
