wildduck 2. version
This commit is contained in:
parent
7748cdff65
commit
2b6f04afbe
|
|
@ -45,9 +45,9 @@ services:
|
||||||
- "25:25" # SMTP
|
- "25:25" # SMTP
|
||||||
- "587:587" # SMTP Submission
|
- "587:587" # SMTP Submission
|
||||||
- "993:993" # IMAPS
|
- "993:993" # IMAPS
|
||||||
- "995:995" # POP3S
|
- "127.0.0.1:995:995" # POP3S (nur lokal)
|
||||||
- "143:143" # IMAP
|
- "143:143" # IMAP
|
||||||
- "110:110" # POP3
|
- "127.0.0.1:110:110" # POP3 (nur lokal)
|
||||||
networks:
|
networks:
|
||||||
- mail_network
|
- mail_network
|
||||||
|
|
||||||
|
|
@ -58,9 +58,12 @@ services:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
depends_on:
|
depends_on:
|
||||||
- wildduck
|
- wildduck
|
||||||
|
- redis
|
||||||
environment:
|
environment:
|
||||||
- WEBMAIL_HOST=mail.andreasknuth.de
|
- WEBMAIL_HOST=mail.andreasknuth.de
|
||||||
- WILDDUCK_API=http://wildduck:8080
|
- WILDDUCK_API=http://wildduck:8080
|
||||||
|
- REDIS_HOST=redis
|
||||||
|
- REDIS_PORT=6379
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:4000:3000"
|
- "127.0.0.1:4000:3000"
|
||||||
networks:
|
networks:
|
||||||
|
|
|
||||||
|
|
@ -102,4 +102,15 @@ enabled = true
|
||||||
# Audit-Log für Compliance
|
# Audit-Log für Compliance
|
||||||
enabled = true
|
enabled = true
|
||||||
# Aufbewahrungszeit für Audit-Logs (365 Tage)
|
# Aufbewahrungszeit für Audit-Logs (365 Tage)
|
||||||
retention = 365
|
retention = 365
|
||||||
|
|
||||||
|
# LMTP Konfiguration hinzufügen
|
||||||
|
[lmtp]
|
||||||
|
enabled = true
|
||||||
|
port = 2424
|
||||||
|
host = "0.0.0.0"
|
||||||
|
secure = false
|
||||||
|
|
||||||
|
# ElasticSearch deaktivieren
|
||||||
|
[elasticsearch]
|
||||||
|
enabled = false
|
||||||
Loading…
Reference in New Issue