added spamassassin integration to mailpit

Signed-off-by: Ronni Skansing <rskansing@gmail.com>
This commit is contained in:
Ronni Skansing
2025-09-09 18:15:17 +02:00
parent 4f7ed676bd
commit 65803b6a43
2 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -114,7 +114,7 @@ Visit the [Phishing Club Guide](https://phishing.club/guide/introduction/) for m
| 8002 | Backend API | Backend API server |
| 8003 | Frontend | Development frontend with Vite |
| 8101 | Database Viewer | DBGate database administration |
| 8102 | Mail Server | Mailpit SMTP server for testing |
| 8102 | Mail Server | Mailpit SMTP server with SpamAssassin integration |
| 8103 | Container Logs | Dozzle log viewer |
| 8104 | Container Stats | Docker container statistics |
| 8201 | ACME Server | Pebble ACME server for certificates |
+12
View File
@@ -77,9 +77,21 @@ services:
environment:
MP_SMTP_AUTH_ACCEPT_ANY: 1
MP_SMTP_AUTH_ALLOW_INSECURE: 1
MP_ENABLE_SPAMASSASSIN: spamassassin:783
depends_on:
- spamassassin
networks:
- default
# SpamAssassin - Spam detection and scoring
spamassassin:
image: axllent/spamassassin
container_name: spamassassin
restart: unless-stopped
networks:
- default
#
# Pebble - ACME server for testing
# Used to test TLS certificate requesting via ACME
pebble: