From 04c021949d73464cacd43f4553ca2242bf80b9c8 Mon Sep 17 00:00:00 2001 From: Benoit Garcia Date: Tue, 19 Aug 2025 06:04:32 +0200 Subject: [PATCH] chore: Replace mailhog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Mailhog hasn’t been updated since August 2022. While the SMTP protocol remains stable, the underlying libraries and dependencies may have evolved. Using an actively maintained tool can help avoid potential security or compatibility issues in the future. Let me know if you have any questions or need further adjustments! Signed-off-by: Benoit Garcia --- compose.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/compose.yaml b/compose.yaml index bf879fc1e..5ca1d70ca 100644 --- a/compose.yaml +++ b/compose.yaml @@ -75,14 +75,17 @@ services: - "./compose/tempo/tempo.yaml:/etc/tempo.yaml:ro" - "tempo-data:/var/tempo:rw" - mailhog: - image: "mailhog/mailhog:latest" - platform: linux/amd64 + mailpit: + image: "axllent/mailpit:latest" ports: - "1025:1025" # SMTP server - "8025:8025" # Web UI environment: - - MH_STORAGE=memory + - "MP_DISABLE_VERSION_CHECK=true" + - "MP_VERBOSE=false" + - "MP_SMTP_AUTH_ACCEPT_ANY=true" + - "MP_ENABLE_PROMETHEUS=true" + - "MP_SMTP_AUTH_ALLOW_INSECURE=true" chrome: image: "chromedp/headless-shell:140.0.7259.2"