msmtprc 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. ##### My (demuredemeanor) msmtprc
  2. # Uses tabstop=4; shiftwidth=4 tabs; foldmarker={{{,}}};
  3. # https://notabug.org/demure/dotfiles
  4. # legacy repo http://github.com/demure/dotfiles
  5. # vim:set syntax=sh:
  6. ## This is heavily inspired by Mark H. Nichols's post
  7. # http://zanshin.net/2015/01/19/teaching-a-homely-mutt-new-tricks/
  8. #
  9. # which in turn was inspired by Steve Losh's post
  10. # http://stevelosh.com/blog/2012/10/the-homely-mutt/
  11. #
  12. # Aside from using my accounts, and eventually a few tweaks,
  13. # I am /not/ using OS X's keychain...
  14. # I am using pass now, which is working quite well
  15. # https://github.com/sup-heliotrope/sup/wiki/Securely-Store-Password
  16. ### sdf ### {{{
  17. account sdf
  18. host mx.sdf.org
  19. port 587
  20. protocol smtp
  21. auth on
  22. passwordeval pass cli/mail-sdf-smtp
  23. from demure@sdf.org
  24. user demure.sdf.org@sdf.org
  25. tls on
  26. tls_trust_file /etc/ssl/certs/ca-certificates.crt
  27. ### End sdf ### }}}
  28. ### gmail ### {{{
  29. account gmail
  30. host smtp.gmail.com
  31. port 587
  32. protocol smtp
  33. auth on
  34. passwordeval pass cli/mail-gmail
  35. from demuredemeanor@gmail.com
  36. user demuredemeanor@gmail.com
  37. tls on
  38. tls_trust_file /etc/ssl/certs/ca-certificates.crt
  39. ### end gmail ### }}}
  40. ### emu ### {{{
  41. account emu
  42. host smtp.gmail.com
  43. port 587
  44. protocol smtp
  45. auth on
  46. passwordeval pass cli/mail-emu
  47. from amcbean@emich.edu
  48. user amcbean@emich.edu
  49. tls on
  50. tls_trust_file /etc/ssl/certs/ca-certificates.crt
  51. ### End emu ### }}}
  52. account default : sdf