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 d5d86073c4a4d2bf1369dceddf55b197bc8b9b4e Author: ouvtam <[email protected]> AuthorDate: Mon Oct 24 11:38:58 2022 +0200 [JAMES-1516] update Antora documentation --- .../docs/modules/ROOT/pages/configure/ssl.adoc | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/server/apps/distributed-app/docs/modules/ROOT/pages/configure/ssl.adoc b/server/apps/distributed-app/docs/modules/ROOT/pages/configure/ssl.adoc index 7c88c487ce..53f19ff68d 100644 --- a/server/apps/distributed-app/docs/modules/ROOT/pages/configure/ssl.adoc +++ b/server/apps/distributed-app/docs/modules/ROOT/pages/configure/ssl.adoc @@ -48,6 +48,23 @@ An optional secret might be specified for the private key: </tls> .... +Optionally, TLS protocols and/or cipher suites can be specified explicitly (smtpserver.xml, pop3server.xml, imapserver.xml,..). +Otherwise, the default protocols and cipher suites of the used JDK will be used: +.... +<tls socketTLS="true" startTLS="false"> + <supportedProtocols> + <protocol>TLSv1.2</protocol> + <protocol>TLSv1.1</protocol> + <protocol>TLSv1</protocol> + <protocol>SSLv3</protocol> + </supportedProtocols> + <supportedCipherSuites> + <cipherSuite>TLS_AES_256_GCM_SHA384</cipherSuite> + <cipherSuite>TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256</cipherSuite> + </supportedCipherSuites> +</tls> +.... + 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. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
