mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-01 02:33:10 +01:00
20 lines
494 B
Django/Jinja
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
|