-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.toml.example
51 lines (44 loc) · 904 Bytes
/
config.toml.example
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
[ssl]
key = "/etc/letsencrypt/live/example.com/privkey.pem"
cert = "/etc/letsencrypt/live/example.com/cert.pem"
chain = "/etc/letsencrypt/live/example.com/chain.pem"
[[domain]]
domain = "example.com"
name = "Mail"
short_name = "Mail"
[[domain.server]]
protocol = "imap"
hostname = "imap.example.com"
port = 993
auth = "plain"
encrypt = "ssl"
[[domain.server]]
protocol = "imap"
hostname = "imap.example.com"
port = 143
auth = "plain"
encrypt = "starttls"
[[domain.server]]
protocol = "pop3"
hostname = "pop3.example.com"
port = 995
auth = "plain"
encrypt = "ssl"
[[domain.server]]
protocol = "pop3"
hostname = "pop3.example.com"
port = 110
auth = "plain"
encrypt = "starttls"
[[domain.server]]
protocol = "smtp"
hostname = "smtp.example.com"
port = 465
auth = "plain"
encrypt = "ssl"
[[domain.server]]
protocol = "smtp"
hostname = "smtp.example.com"
port = 587
auth = "plain"
encrypt = "starttls"