diff options
-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 |