From cec4fabf1e179f5f4eed36f46917e16f9a2eb692 Mon Sep 17 00:00:00 2001 From: Frederik Vanrenterghem Date: Mon, 9 Sep 2019 20:34:37 +0800 Subject: [PATCH] Use msmtp as SMTP client. Configure for both my .biz and .io domain emails. --- msmtp/.config/msmtp/config | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 msmtp/.config/msmtp/config 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 -- 2.30.2