21 lines
562 B
Plaintext
Raw Normal View History

# Set default values for all following accounts.
defaults
auth on
2023-12-19 16:03:19 +01:00
logfile ~/.msmtp.log
tls_starttls {{ 'on' if system_email_start_tls else 'off' }}
2023-12-19 16:03:19 +01:00
{% if system_email_tls %}
tls on
tls_trust_file /etc/ssl/certs/ca-certificates.crt
2023-12-19 16:03:19 +01:00
{% else %}
tls off
{% endif %}
account system_email
host {{system_email_host}}
2023-12-19 16:03:19 +01:00
port {{system_email_smtp_port}}
from {{system_email_from}}
user {{system_email_username}}
password {{system_email_password}}
account default : system_email