12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- ##### 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 mx.sdf.org
- port 587
- protocol smtp
- auth on
- passwordeval pass cli/mail-sdf-smtp
- from demure@sdf.org
- user demure.sdf.org@sdf.org
- tls on
- tls_trust_file /etc/ssl/certs/ca-certificates.crt
- ### End sdf ### }}}
- ### gmail ### {{{
- account gmail
- host smtp.gmail.com
- port 587
- protocol smtp
- auth on
- passwordeval pass cli/mail-gmail
- from demuredemeanor@gmail.com
- user demuredemeanor@gmail.com
- tls on
- tls_trust_file /etc/ssl/certs/ca-certificates.crt
- ### end gmail ### }}}
- ### emu ### {{{
- account emu
- host smtp.gmail.com
- port 587
- protocol smtp
- auth on
- passwordeval pass cli/mail-emu
- from amcbean@emich.edu
- user amcbean@emich.edu
- tls on
- tls_trust_file /etc/ssl/certs/ca-certificates.crt
- ### End emu ### }}}
- account default : sdf
|