Skip to content

Releases: knadh/smtppool

v2.0.0

29 Mar 11:30
Compare
Choose a tag to compare

This is a major breaking version that changes the Opt.SSL bool to concrete SSL types.

// SSLType is the type of SSL connection to use.
type SSLType uint8

const (
	// SSLNone specifies a plain unencrypted connection.
	SSLNone SSLType = iota

	// SSLTLS specifies an SSL (TLS) connection without the STARTTLS extension.
	SSLTLS

	// SSLSTARTTLS specifies a non-TLS connection that then upgrades to STARTTLS.
	SSLSTARTTLS
)

Full Changelog: v1.3.0...v2.0.0

v1.2.1

12 Nov 09:44
a1fa1fe
Compare
Choose a tag to compare

What's Changed

  • use default hostname for messageID if hostname is not an FQDN by @vixns in #13

New Contributors

  • @vixns made their first contribution in #13

Full Changelog: v1.2.0...v1.2.1

v1.1.0

06 Jan 06:31
Compare
Choose a tag to compare
v1.1.0

v0.4.0

02 Jan 08:07
Compare
Choose a tag to compare

Full Changelog: v0.3.1...v0.4.0