TOMLmaitred.toml -rw-r--r-- 511 B
1# Path of the directory to deliver mail in the "maildir" format to
2maildir = "mail"
3
4# Hostname of our server
5hostname = "localhost:2525"
6
7# logging level
8level = "TRACE"
9
10# address to bind to
11address = "0.0.0.0:2525"
12
13# Enable HAProxy's PROXY Protocol
14proxy_protocol = false
15
16[tls]
17certificate = "cert.pem"
18key = "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"