1 | # Path of the directory to deliver mail in the "maildir" format to |
2 | maildir = "mail" |
3 | |
4 | # Hostname of our server |
5 | hostname = "localhost:2525" |
6 | |
7 | # logging level |
8 | level = "TRACE" |
9 | |
10 | # address to bind to |
11 | address = "0.0.0.0:2525" |
12 | |
13 | # Enable HAProxy's PROXY Protocol |
14 | proxy_protocol = false |
15 | |
16 | [tls] |
17 | certificate = "cert.pem" |
18 | key = "key.pem" |
19 | |
20 | [dkim] |
21 | enabled = false |
22 | |
23 | [spf] |
24 | enabled = false |
25 | |
26 | [[accounts]] |
27 | address = "demo-1@example.org" |
28 | |
29 | [[accounts]] |
30 | address = "demo-2@example.org" |
31 | |
32 | [[accounts]] |
33 | address = "hello@example.org" |