This repository has been archived by the owner on May 25, 2022. It is now read-only.
Releases: jakobkmar/SimpleKotlinMail
Releases · jakobkmar/SimpleKotlinMail
1.4.0
1.3.3
1.3.2
- added
overrideCipherSuites
parameter to the setupTLS function- now only if this parameter is set to true, the default enabled cipher suites (by Java) will be changed to the ones selected by SimpleKotlinMail
- now using Kotlin
1.4.32
- updated dependencies
- updated compiler plugins
1.3.1
1.3.0
1.2.1
1.2.0
This release brings advanced TLS support to SimpleKotlinMail!
Just call setupTLS
on your SMTPServer builder.
TLSv1.3 and TLSv1.2 are enabled by default, but you can change that to your liking.
The setupTLS
function requires an SSLContext
, which you can easily get with the utility function TLSContext
. This function requires you to specify the keyStore and the trustStore file.
Additionally, you can now set and access the default mailer by using MailerManager.defaultMailer
.
Furthermore, it is now possible to get the session out of a MessageContext by calling context.session
. The session gives you access to a lot of internal information.