diff options
author | Matt Turner <mattst88@framework.mattst88.com> | 2023-03-06 11:12:20 -0500 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2023-03-06 11:18:37 -0500 |
commit | 01204fff758637398ce3a9d2b6ca20038016e45b (patch) | |
tree | ec1e65f28390437a4c6a07cbf6a507304cc1bd8d /msmtp/.msmtprc | |
parent | e83765747e2f4411189dbae392b5e197fdf8744b (diff) |
Rearrange for better usage with GNU stow
Diffstat (limited to 'msmtp/.msmtprc')
-rw-r--r-- | msmtp/.msmtprc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/msmtp/.msmtprc b/msmtp/.msmtprc new file mode 100644 index 0000000..7b050b3 --- /dev/null +++ b/msmtp/.msmtprc @@ -0,0 +1,22 @@ +defaults +tls on +tls_trust_file /etc/ssl/certs/ca-certificates.crt +logfile ~/.msmtp.log + +account gmail +host smtp.gmail.com +port 587 +from mattst88@gmail.com +auth on +user mattst88 +passwordeval "gpg --quiet --for-your-eyes-only --no-tty -d ~/.password-store/email/msmtp-mattst88@gmail.com.gpg" + +account gentoo +host smtp.gentoo.org +port 587 +from mattst88@gentoo.org +auth on +user mattst88 +passwordeval "gpg --quiet --for-your-eyes-only --no-tty -d ~/.password-store/email/mattst88@gentoo.org.gpg" + +account default : gmail |