123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- ##### My (demuredemeanor) msmtprc
- # Uses tabstop=4; shiftwidth=4 tabs; foldmarker={{{,}}};
- # https://notabug.org/demure/dotfiles
- # legacy repo http://github.com/demure/dotfiles
- # vim:set syntax=sh:
- ## This is heavily inspired by Mark H. Nichols's post
- # http://zanshin.net/2015/01/19/teaching-a-homely-mutt-new-tricks/
- #
- # which in turn was inspired by Steve Losh's post
- # http://stevelosh.com/blog/2012/10/the-homely-mutt/
- #
- # Aside from using my accounts, and eventually a few tweaks,
- # I am /not/ using OS X's keychain...
- # I am using pass now, which is working quite well
- # https://github.com/sup-heliotrope/sup/wiki/Securely-Store-Password
- ### sdf ### {{{
- account sdf
- host ol.sdf.org
- port 587
- protocol smtp
- auth on
- passwordeval pass Mail/sdf-smtp
- from demure@sdf.org
- user demure.sdf.org
- tls_trust_file ~/.mutt/Equifax_Secure_CA.cert
- ### End sdf ### }}}
- ### gmail ### {{{
- account gmail
- host smtp.gmail.com
- port 587
- protocol smtp
- auth on
- passwordeval pass Mail/gmail
- from demuredemeanor@gmail.com
- user demuredemeanor@gmail.com
- tls on
- tls_trust_file ~/.mutt/Equifax_Secure_CA.cert
- ### end gmail ### }}}
- ### emu ### {{{
- account emu
- host smtp.gmail.com
- port 587
- protocol smtp
- auth on
- passwordeval pass Mail/emu
- from amcbean@emich.edu
- user amcbean@emich.edu
- tls on
- tls_trust_file ~/.mutt/Equifax_Secure_CA.cert
- ### End emu ### }}}
- account default : sdf
|