Releases: axllent/mailpit
v1.15.0
Notice
This release adds TLS (or sometimes called "SSL/TLS") support for SMTP. This is easily confused with the default STARTTLS which is an entirely different protocol (and far more widely used). The original Mailpit flag --smtp-tls-required
was somewhat confusing because in reality both TLS and STARTTLS use TLS, however both work in very different ways and are incompatible protocols.
As a result of this, --smtp-tls-required
has been deprecated and replaced with --smtp-require-starttls
to enforce STARTTLS, and a new flag --smtp-require-tls
has been added to use TLS. To help prevent issues, the deprecated --smtp-tls-required
has been aliased with --smtp-require-starttls
and a startup warning is displayed.
Feature
- Add SMTP SSL/TLS option (#265)
Fix
- Enforce SMTP STARTTLS by default if authentication is set in line with RFC 4954
Chore
- Update node dependencies
- Update Go dependencies
v1.14.4
Feature
- Allow setting SMTP relay configuration values via environment variables (#262)
Chore
- Update caniemail test data
- Reorder CLI flags to group by related functionality
Deprecation notice
The 'recipient-allowlist
option in the SMTP relay configuration file has been replaced with allowed_recipients
instead. Existing configuration files will continue to work, but Mailpit will display a startup warning as this will eventually be removed.
v1.14.3
v1.14.2
v1.14.1
Feature
- Set message tags using subaddressing, aka: plus addressing (#253)
- Option to enforce TitleCasing for all newly created tags
Chore
- Tag names now allow
.
and must be a minimum of 1 character - Update node dependencies
- Update Go dependencies
Fix
- Handle null values in Mailpit settings, set DeletedSize=0 if null
v1.14.0
Feature
- Optional POP3 server (#249)
Chore
- Switch to short uuid format for database IDs
- Better handling of automatic database compression (vacuuming) after deleting messages
- Update node dependencies
- Update Go dependencies
- Refactor storage library
- Security improvements (gosec)
Docker
- Add edge Docker images for latest unreleased features
v1.13.3
Note: This release adds ReplyTo
information in the messages summary & API, however any existing messages in your database will not return this as they need to be reindexed first. If you have existing messages and require this information (eg: API integration and/or want to search specifically for this), then please see mailpit reindex -h
.
API
- Include Reply-To information in message summaries for message list & websocket events
Feature
- Add reply-to: search filter (#247)
Chore
- Update node dependencies
- Update Go dependencies
- Compress database only when >= 1% of total message size has been deleted
- Update "About" modal layout when new version is available
v1.13.2
v1.13.1
v1.13.0
Feature
- Add optional SpamAssassin integration to display "spamminess" scores (#233)
- Add option to disable SMTP reverse DNS (rDNS) lookup (#230)
- Display List-Unsubscribe & List-Unsubscribe-Post header info with syntax validation (#236)
Fix
- Display multiple whitespace characters in message subject & recipient names (#238)
- Sendmail support for
-f 'Name <email[@example](https://github.com/example).com>'
format
Chore
- Compress compiled assets with
npm run build
- Update Go modules
- Update node modules