Skip to content

Releases: bbottema/simple-java-mail

v8.0.0 Defaults and Overrides overhaul

08 Mar 18:18
Compare
Choose a tag to compare

v8.0.0 (08-March-2023)

  • #451: Feature: Make defaults and overrides a first class feature
  • #452: Enhancement: with ".disableAllClientValidation(true)", also ignore errors from the completeness check
  • #450: Bug: when using dispositionNotificationTo or returnReceiptTo mode, when the corresponding emails are not filled, it fails even though it should fall back to replyTo or From
  • #449: Bug: IllegalArgumentException on parsing empty header name and value (when parsing Outlook message)
  • #448: Bug: withEmailDefaults and withEmailOverrides does not work with CustomMailer
  • #447: Enhancement: allow defaults/overrides to ignore individual fields (turn off for specific properties)
  • #446: Enhancement: add missing defaults properties for DKIM

v7.9.1

22 Feb 11:24
Compare
Choose a tag to compare

#444 Bugfix: encoded delimited recipients in EML not parsed properly

v7.9.0 DKIM header signing exclusions

21 Feb 22:48
Compare
Choose a tag to compare

#344 Enhancement: make DKIM signing more flexible by allowing header exclusions in DKIM signature

image

v7.8.3

21 Feb 00:20
Compare
Choose a tag to compare

#293 Bugfix: Decoding missing in a few placed when parsing MimeMessage or sending an Email

v7.8.2 Fail when smime-module is needed but missing

09 Feb 11:53
Compare
Choose a tag to compare

#442 Enhancement: Simple Java Mail should throw an exception when trying to utilize S/MIME with smime-module on the classpath

v7.8.1 fail-fast and avoid NPE

01 Feb 14:12
Compare
Choose a tag to compare

#438 Bug: properly Fail-Fast in case of Transport claim timeout in the batch-module, rather than running into NPE further down the line

v7.8.0 reject emails based on large size

24 Jan 17:01
Compare
Choose a tag to compare

v7.8.0 (24-January-2023)

  • #436 Enhancement: add mailerBuilder.withTransportModeLoggingOnly() as mailer API entry point
  • #435 Enhancement: SMTP server config should be optional in case a CustomMailer is used
  • #427 Feature: set a maximum email size on Mailer level which throws EmailToBig exception when exceeded

v7.7.1 CustomMailer regression bug

18 Jan 08:55
Compare
Choose a tag to compare

#434 Regression bug in #430: Email parameter missing in CustomMailer interface

v7.7.0 improved connection pools and cluster config

16 Jan 23:43
Compare
Choose a tag to compare
  • #430 Enhancement: auto-reconnect (if needed) when reclaiming a Transport connection from the SMTP connection pool (to avoid needless errors)
  • #383 Feature: be able to set defaults and overrides on the Mailer level, rather than email or global level

This moves the conversion of Email to MimeMessage to after a Transport instance has been selected (in case of a cluster of SMTP servers),
so we can apply defaults/overrides on the Mailer level, meaning you can configure 'global' values for individual SMTP servers

v7.6.0 OAUTH2 support

05 Jan 13:39
Compare
Choose a tag to compare

#421: Enhancement: Add support for OAUTH2 authentication