(geronimo-mail) branch main updated: Fix README

[email protected] Sun, 16 Nov 2025 08:03:49 +0000
Newsgroups gmane.comp.java.geronimo.cvs
Message-ID <[email protected]>
This is an automated email from the ASF dual-hosted git repository.

rzo1 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/geronimo-mail.git


The following commit(s) were added to refs/heads/main by this push:
     new 3f52006  Fix README
3f52006 is described below

commit 3f520063b07f3bee0817b37fb2ade680c49676fc
Author: Richard Zowalla <[email protected]>
AuthorDate: Sun Nov 16 09:03:44 2025 +0100

    Fix README
---
 README.md | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md
index a4796c6..a89f64a 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@ Building
 
 To build you will need:
 
- * J2SE SDK 1.8+
+ * JDK 1.8+
  * Maven 3.9.x
 
 To build all changes incrementally:
@@ -35,7 +35,7 @@ To support TLSv1+ the following property can be set:
 
 ```
 mail.smtp.ssl.protocols=TLSv1 TLSv1.1 TLSv1.2 TLSv1.3
-``
+```
 
 ## Using a Custom SSL Socket Factory (via Reflection)
 
@@ -46,7 +46,7 @@ This allows full control of supported cyphers or protocols.
 
 ```
 mail.smtp.ssl.socketFactory.class=my.custom.CustomSSLSocketFactory
-``
+```
 
 ## Using a Custom SSL Socket Factory (as pre-configured instance)
 
@@ -70,7 +70,7 @@ To support only `TLS_AES_128_GCM_SHA256` and `TLS_AES_256_GCM_SHA384` the follow
 
 ```
 mail.smtp.ssl.ciphersuites=TLS_AES_128_GCM_SHA256 TLS_AES_256_GCM_SHA384
-``
+```
 
 ## Using a Custom SSL Socket Factory (via Reflection)
 
@@ -81,9 +81,9 @@ This allows full control of supported cyphers or protocols.
 
 ```
 mail.smtp.ssl.socketFactory.class=my.custom.CustomSSLSocketFactory
-``
+```
 
 ## Using a Custom SSL Socket Factory (as pre-configured instance)
 
 The property `ssl.socketFactory` can be used to specify a pre-configured custom SSL socket factory, which is used to create the underlying SSL/TLS socket.
-In this context, the instance has to be passed to the `Properties` of the related `MailSession`. This allows full control of supported cyphers or protocols.
\ No newline at end of file
+In this context, the instance has to be passed to the `Properties` of the related `MailSession`. This allows full control of supported cyphers or protocols.