diff options
author | David Runge <dave@sleepmap.de> | 2015-09-06 16:39:15 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2015-09-06 16:39:15 +0200 |
commit | 75e7f878195855651cd51b8be070738ef8cd492b (patch) | |
tree | 85ea7de40d2b816457b91bf5adbeb83663d7cc4f /.msmtprc | |
parent | 33a2731e93fa5f14664fbfc1e8b46b45f60cd223 (diff) | |
download | dotfiles-75e7f878195855651cd51b8be070738ef8cd492b.tar.gz dotfiles-75e7f878195855651cd51b8be070738ef8cd492b.tar.bz2 dotfiles-75e7f878195855651cd51b8be070738ef8cd492b.tar.xz dotfiles-75e7f878195855651cd51b8be070738ef8cd492b.zip |
.msmtprc: Adding msmtp configuration for use with mutt.
Diffstat (limited to '.msmtprc')
-rw-r--r-- | .msmtprc | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/.msmtprc b/.msmtprc new file mode 100644 index 0000000..7c6e72a --- /dev/null +++ b/.msmtprc @@ -0,0 +1,34 @@ +# Set default values for all following accounts. +defaults +auth on +port 587 +tls on +protocol smtp +#logfile ~/.log/msmtp.log + +# dave@sleepmap.de +account sleepmap.de +host mail.sleepmap.de +from dave@sleepmap.de +user dave@sleepmap.de +passwordeval "pass2msmtp dave@sleepmap.de" +tls_trust_file .certs/sleepmap.crt + +# david.runge@campus.tu-berlin.de +account tu-berlin.de +host mail.tu-berlin.de +from david.runge@campus.tu-berlin.de +user davezerave +passwordeval "pass2msmtp davezerave@mail.tu-berlin.de" +tls_trust_file .certs/tu-berlin.crt + +# dave@c-base.org +account c-base.org +host c-mail.c-base.org +from dave@c-base.org +user dave +passwordeval "pass2msmtp dave@c-base.org" +tls_trust_file .certs/c-base.crt + +# Set a default account +account default : sleepmap.de |