blob: b73f2bbde95e97323255db6d08ee7ed0b0fd7237 (
plain)
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
|
#
# msmtp configuration file
#
# LIweitiaNux
# February 6, 2012
#
# Ref: http://pbrisbin.com/posts/two_accounts_in_mutt
#
### Accounts will inherit settings from this section
defaults
auth on
tls on
tls_starttls on
#tls_trust_file /usr/local/share/certs/ca-root-nss.crt
tls_trust_file /etc/ssl/certs/ca-certificates.crt
protocol smtp
logfile ~/.msmtp/msmtp.log
# SSL: 465
# TLS: 587
### autistici
account autistici
host smtp.autistici.org
port 587
tls_trust_file ~/.msmtp/autistici_ca.crt
tls_certcheck on
#auto_from on
from liweitianux@autistici.org
user liweitianux@autistici.org
passwordeval gpg -d ~/.msmtp/autistici.gpg
#password password
### gmail
account gmail
host smtp.gmail.com
port 587
from Weitian LI
user liweitianux@gmail.com
#passwordeval gpg -d ~/.msmtp/gmail.gpg
#password password
### lavabit
account lavabit
host smtp.lavabit.com
port 587
from Weitian LI
user liweitianux
#passwordeval gpg -d ~/.msmtp/lavabit.gpg
#password passwod
### set a default account
account default : autistici
|