From: Frederik Vanrenterghem Date: Mon, 9 Sep 2019 12:34:37 +0000 (+0800) Subject: Use msmtp as SMTP client. X-Git-Url: http://git.vanrenterghem.biz/Dotty.git/commitdiff_plain/cec4fabf1e179f5f4eed36f46917e16f9a2eb692 Use msmtp as SMTP client. Configure for both my .biz and .io domain emails. --- diff --git a/msmtp/.config/msmtp/config b/msmtp/.config/msmtp/config new file mode 100644 index 0000000..6ff165c --- /dev/null +++ b/msmtp/.config/msmtp/config @@ -0,0 +1,22 @@ +port 587 +tls on +tls_trust_file /etc/ssl/certs/ca-certificates.crt + +account biz +host smtp.gmail.com +from frederik@vanrenterghem.biz +tls on +tls_starttls on +tls_certcheck off +auth plain +user frederik@vanrenterghem.biz +passwordeval gpg --no-tty -q -d ~/Documents/paswoorden/frederik@vanrenterghem.biz.asc + +account io +host mail.vanrenterghem.io +tls on +tls_starttls on +tls_certcheck off +auth plain +user frederik@vanrenterghem.io +passwordeval gpg --no-tty -q -d ~/Documents/paswoorden/frederik@vanrenterghem.io.asc