Files
infra/mini-pc/maddy/maddy.conf
T
Dmitry bf6aa03fcb
Deploy mini-pc / deploy (push) Failing after 40s
Restrict Maddy Relay Sender
2026-05-30 20:38:15 +03:00

26 lines
540 B
Plaintext

hostname {env:MADDY_HOSTNAME}
state_dir /data
runtime_dir /run/maddy
tls off
smtp tcp://0.0.0.0:2525 {
hostname {env:MADDY_HOSTNAME}
dmarc no
limits {
all rate 30 1m
}
source {env:RELAY_ALLOWED_FROM} {
default_destination {
deliver_to smtp {env:RELAY_SMTP_TARGET} {
auth plain {env:RELAY_SMTP_USERNAME} {env:RELAY_SMTP_PASSWORD}
starttls yes
}
}
}
default_source {
reject 550 5.7.1 "Sender domain is not allowed"
}
}