1# specify what address/port DKIMproxy should listen on
2listen    host.name:10027
3
4# specify what address/port DKIMproxy forwards mail to
5relay     host.name:10028
6
7# specify what domains DKIMproxy can sign for (comma-separated, no spaces)
8domain    example.org
9
10# specify what signatures to add
11signature dkim(c=relaxed)
12signature domainkeys(c=nofws)
13
14# specify location of the private key
15keyfile   /full/path/to/private.key
16
17# specify the selector (i.e. the name of the key record put in DNS)
18selector  selector1
19
20# control how many processes DKIMproxy uses
21#  - more information on these options (and others) can be found by
22#    running `perldoc Net::Server::PreFork'.
23#min_servers 5
24#min_spare_servers 2
25