diff options
author | Urbain Vaes <urbain@vaes.uk> | 2015-08-08 20:08:42 +0200 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2015-08-08 20:08:42 +0200 |
commit | 8df9472e0cdbab0d12211c2bc77918e8f515c409 (patch) | |
tree | f420b705adfec42bb33191c44c8fe252fca0f785 /.msmtprc | |
parent | b8a9b07b741cddbf6e0476e70c94aa186d62b6ae (diff) |
Improve installation and organization
Diffstat (limited to '.msmtprc')
-rw-r--r-- | .msmtprc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.msmtprc b/.msmtprc new file mode 100644 index 0000000..99e0e3e --- /dev/null +++ b/.msmtprc @@ -0,0 +1,22 @@ +defaults +auth on +tls on +tls_trust_file /etc/ssl/certs/ca-certificates.crt +logfile ~/.msmtp.log + +account gmail +host smtp.gmail.com +port 587 +from urbain.p.vaes@gmail.com +user urbain.p.vaes +passwordeval "gpg --use-agent --quiet --for-your-eyes-only --no-tty --decrypt ~/.passwords/main.asc" + +account imperial +host smtp.cc.ic.ac.uk +from u.vaes13@imperial.ac.uk +user uv113 +passwordeval "gpg --use-agent --quiet --for-your-eyes-only --no-tty --decrypt ~/.passwords/imperial.asc" +port 587 + +# Set a default account +account default : imperial |