2023-10-31 11:37:50 +01:00
|
|
|
version: '3.3'
|
|
|
|
services:
|
2024-02-01 21:23:44 +01:00
|
|
|
postfix:
|
2024-02-06 20:46:14 +01:00
|
|
|
image: "registry.mgrote.net/postfix:v1.0.137"
|
2024-02-01 21:23:44 +01:00
|
|
|
container_name: mail-relay
|
|
|
|
restart: always
|
|
|
|
ports:
|
|
|
|
- 1025:25
|
|
|
|
environment:
|
|
|
|
SMTP_SERVER: smtp.strato.de
|
|
|
|
SMTP_USERNAME: info@mgrote.net
|
|
|
|
SMTP_PASSWORD: "{{ lookup('keepass', 'strato_smtp_password', 'password') }}"
|
|
|
|
SERVER_HOSTNAME: mgrote.net
|
|
|
|
# DEBUG: "yes" # literal
|
|
|
|
ALWAYS_ADD_MISSING_HEADERS: "no" # literal
|
|
|
|
# LOG_SUBJECT: "yes" # literal
|
|
|
|
INET_PROTOCOL: ipv4
|
|
|
|
SMTP_GENERIC_MAP: "/.*/ info@mgrote.net"
|
|
|
|
networks:
|
|
|
|
- mail-relay
|
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "sh", "-c", "echo 'EHLO localhost' | nc -w 1 localhost 25 | grep -q '220 '"]
|
|
|
|
interval: 30s
|
|
|
|
timeout: 10s
|
|
|
|
retries: 3
|
2023-10-31 11:37:50 +01:00
|
|
|
|
|
|
|
######## Networks ########
|
|
|
|
networks:
|
|
|
|
mail-relay:
|
|
|
|
external: true
|