Fix dkim_verify_signers option. Bug 2366
[exim.git] / test / confs / 3206
CommitLineData
afda344b
PH
1# Exim test configuration 3206
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b
PH
5primary_hostname = myhost.test.ex
6qualify_domain = test.ex
afda344b
PH
7
8# ----- Main settings -----
9
10domainlist local_domains = test.ex : !*.remote.ex : testdb;defer
11
12hold_domains = !test.ex : hold.remote.ex : !*.go.remote.ex : testdb;defer
13queue_domains = !test.ex : queue.go.remote.ex : testdb;defer
14
15
16# ----- Routers -----
17
18begin routers
19
20fail_remote_domains:
21 driver = redirect
22 domains = ! +local_domains
23 data = :fail: unrouteable mail domain "$domain"
24
25all:
26 driver = accept
27 retry_use_local_part
28 transport = local_delivery
29
30
31# ----- Transports -----
32
33begin transports
34
35local_delivery:
36 driver = appendfile
37 envelope_to_add
38 file = DIR/test-mail/$local_part
39 user = CALLER
40
41
42# ----- Retry -----
43
44
45begin retry
46
47* * F,1h,10m
48
49
50# End