Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})

* Added Mailpit v1.28.0 support.
* Set default Mailpit version to v1.28.0.
## v1.0.1 - [June 29, 2025](https://github.com/lando/mailpit/releases/tag/v1.0.1)

- Added support for `mailpit` v1.25 - v1.27
Expand Down
9 changes: 7 additions & 2 deletions builders/mailpit.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,13 @@ const setConfigOptions = require('../utils/set-config-options');
* @type {MailpitConfig}
*/
const defaultConfig = {
version: '1.27',
supported: ['1.25', '1.26', '1.27'],
version: '1.28.0',
supported: [
'1.28.0',
'1.27',
'1.26',
'1.25',
],
mailFrom: ['appserver'],
maxMessages: 500,
port: 1025,
Expand Down
4 changes: 3 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ To retrieve connection and credential details for your Mailpit instance, use the

## Supported versions

- **[1.27](https://hub.docker.com/r/axllent/mailpit/)** **(default)**
- **[1.28.0](https://hub.docker.com/r/axllent/mailpit/)** **(default)**
- [1.27](https://hub.docker.com/r/axllent/mailpit/)
- [1.26](https://hub.docker.com/r/axllent/mailpit/)
- [1.25](https://hub.docker.com/r/axllent/mailpit/)
- [custom](https://docs.lando.dev/services/lando-3.html#overrides)

2 changes: 1 addition & 1 deletion examples/advanced/.lando.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
type: php:8.2

smtpserver:
type: mailpit:1.25
type: mailpit:1.28.0
maxMessages: 54321
port: 2025
mailFrom:
Expand Down