computer-playbook/roles/systemd-notifier-email/templates/msmtprc.conf.j2

20 lines
494 B
Django/Jinja

# Set default values for all following accounts.
defaults
auth on
logfile ~/.msmtp.log
{% if system_email_tls %}
tls on
tls_trust_file /etc/ssl/certs/ca-certificates.crt
{% else %}
tls off
{% endif %}
account system_email
host {{system_email_host}}
port {{system_email_smtp_port}}
from {{system_email}}
user {{system_email_username}}
password {{system_email_password}}
account default : system_email