Merge pull request #1281 from ker0x/feature/mailpit

Replace Mailcatcher with Mailpit
This commit is contained in:
Fabien Potencier
2024-01-18 10:32:02 +01:00
committed by GitHub
+7 -2
View File
@@ -9,8 +9,13 @@
"docker-compose.override.yml": {
"services": [
"mailer:",
" image: sj26/mailcatcher",
" ports: [\"1025\", \"1080\"]"
" image: axllent/mailpit",
" ports:",
" - \"1025\"",
" - \"8025\"",
" environment:",
" MP_SMTP_AUTH_ACCEPT_ANY: 1",
" MP_SMTP_AUTH_ALLOW_INSECURE: 1"
]
}
},