diff options
author | neodarz <neodarz@neodarz.net> | 2019-09-05 08:50:19 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2019-09-05 08:50:19 +0200 |
commit | 69e905d78990b61e3d7dfc50a66b186fff679ea8 (patch) | |
tree | 289d27a422509c0152279e1d318f2f5bd547ab9c /dotfiles/msmtprc | |
parent | a3533e8ddc15a2a2c99d2ad09c06bf6ad1fac962 (diff) | |
download | dotfiles_dotdrop-69e905d78990b61e3d7dfc50a66b186fff679ea8.tar.xz dotfiles_dotdrop-69e905d78990b61e3d7dfc50a66b186fff679ea8.zip |
Add msmtp config
Diffstat (limited to '')
-rw-r--r-- | dotfiles/msmtprc | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/dotfiles/msmtprc b/dotfiles/msmtprc new file mode 100644 index 0000000..a86b148 --- /dev/null +++ b/dotfiles/msmtprc @@ -0,0 +1,25 @@ +# 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 neodarz +host mail.neodarz.net +port 587 +from neodarz@neodarz.net +user neodarz@neodarz.net +passwordeval "gpg --quiet --for-your-eyes-only --no-tty --decrypt ~/.password-store/Mail/neodarz@neodarz.net.gpg" + +# A freemail service +account corentin.breton +host mail.neodarz.net +port 587 +from corentin.breton@neodarz.net +user corentin.breton@neodarz.net +passwordeval "gpg --quiet --for-your-eyes-only --no-tty --decrypt ~/.password-store/Mail/corentin.breton@neodarz.net.gpg" + +# Set a default account +account default : neodarz |