From 086570ce45ba90a94ec4d47b442d3150c2ef5cd0 Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Mon, 15 Nov 2021 16:08:37 -0600 Subject: Add config for MSMTP email Add a config file for the msmtp program. --- .msmtprc | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .msmtprc diff --git a/.msmtprc b/.msmtprc new file mode 100644 index 0000000..ed34a82 --- /dev/null +++ b/.msmtprc @@ -0,0 +1,23 @@ +defaults +auth on +tls on +tls_trust_file /etc/ssl/certs/ca-certificates.crt +logfile ~/.msmtp.log + +# Private +account private +host mail.gymli.org +port 587 +from dholman@gymli.org +user dholman +passwordeval "pass gymli.org/mail/dholman" + +# TTU +account ttu +host outlook.office365.com +port 587 +from dsholman42@tntech.edu +user dsholman42@tntech.edu +passwordeval "pass tntech.edu/dsholman42" + +account default: private -- cgit v1.2.3