diff options
author | Tharre <tharre3@gmail.com> | 2017-03-09 04:15:54 +0100 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2017-03-09 04:18:37 +0100 |
commit | 105c686f460ca012d3768e65cb49f411f5107b10 (patch) | |
tree | ad08f947df57747a727e2648408eb1f37112b575 /.msmtprc | |
parent | 3606e4bb11cad0505d2ec85fb6090064829dbde9 (diff) | |
download | dotfiles-105c686f460ca012d3768e65cb49f411f5107b10.tar.gz dotfiles-105c686f460ca012d3768e65cb49f411f5107b10.tar.xz dotfiles-105c686f460ca012d3768e65cb49f411f5107b10.zip |
msmtp: update config and remove special cert
Instead /etc/ssl/certs/ca-certificates.crt is now used for TLS.
Diffstat (limited to '.msmtprc')
-rw-r--r-- | .msmtprc | 23 |
1 files changed, 14 insertions, 9 deletions
@@ -1,12 +1,17 @@ -account gmail -host smtp.gmail.com -port 587 -protocol smtp -auth on -from tharre3@gmail.com -user tharre3@gmail.com +# Set default values for all following accounts. +defaults +auth on +tls on +tls_trust_file /etc/ssl/certs/ca-certificates.crt +logfile ~/.msmtp.log + +# Gmail +account gmail +host smtp.gmail.com +port 587 +from tharre3@gmail.com +user tharre3@gmail.com passwordeval "pass email/tharre3@gmail.com" -tls on -tls_trust_file ~/.mutt/Equifax_Secure_CA.cert +# Set a default account account default : gmail |