forked from demure/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmsmtprc
56 lines (51 loc) · 1.36 KB
/
msmtprc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
##### 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 [email protected]
user [email protected]
tls_trust_file /etc/ssl/certs/Equifax_Secure_CA.pem
### End sdf ### }}}
### gmail ### {{{
account gmail
host smtp.gmail.com
port 587
protocol smtp
auth on
passwordeval pass cli/mail-gmail
from [email protected]
user [email protected]
tls on
tls_trust_file /etc/ssl/certs/Equifax_Secure_CA.pem
### end gmail ### }}}
### emu ### {{{
account emu
host smtp.gmail.com
port 587
protocol smtp
auth on
passwordeval pass cli/mail-emu
from [email protected]
user [email protected]
tls on
tls_trust_file /etc/ssl/certs/Equifax_Secure_CA.pem
### End emu ### }}}
account default : sdf