Skip to content

Commit

Permalink
Replace mailcatcher with mailpit
Browse files Browse the repository at this point in the history
  • Loading branch information
ker0x committed Jan 11, 2024
1 parent 0ff0a0a commit 0ab7d95
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions symfony/mailer/4.3/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,20 @@
"docker-compose.override.yml": {
"services": [
"mailer:",
" image: sj26/mailcatcher",
" ports: [\"1025\", \"1080\"]"
]
" image: axllent/mailpit",
" restart: always",
" volumes:",
" - mailer_data:/data",
" ports:",
" - \"1025\"",
" - \"8025\"",
" environment:",
" MP_MAX_MESSAGES: 5000",
" MP_DATA_FILE: /data/mailpit.db",
" MP_SMTP_AUTH_ACCEPT_ANY: 1",
" MP_SMTP_AUTH_ALLOW_INSECURE: 1"
],
"volumes": ["mailer_data:"]
}
},
"aliases": ["mailer", "mail"]
Expand Down

0 comments on commit 0ab7d95

Please sign in to comment.