12 lines
273 B
YAML
12 lines
273 B
YAML
|
|
# Mailpit SMTP Relay Configuration
|
||
|
|
# Relays all outbound emails through IONOS SMTP
|
||
|
|
|
||
|
|
# Default relay for all emails
|
||
|
|
relay:
|
||
|
|
host: ${EMAIL_SMTP_HOST}
|
||
|
|
port: ${EMAIL_SMTP_PORT}
|
||
|
|
username: ${EMAIL_SMTP_USER}
|
||
|
|
password: ${EMAIL_SMTP_PASSWORD}
|
||
|
|
starttls: true
|
||
|
|
auth: plain
|