Fix dkim_verify_signers option. Bug 2366
[exim.git] / test / confs / 0256
CommitLineData
afda344b
PH
1# Exim test configuration 0256
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b 5primary_hostname = myhost.test.ex
afda344b
PH
6
7# ----- Main settings -----
8
bc64a74d 9acl_smtp_rcpt = accept
afda344b 10qualify_domain = test.ex
b6d22362
PH
11errors_copy = *@* ${quote_local_part::abcd+$domain+\
12 ${if eq{$local_part}{CALLER}{xxxx}{$local_part}}}@test.ex
bc64a74d 13trusted_users = CALLER
afda344b
PH
14
15
16# ------ Routers ------
17
18begin routers
19
20r1:
21 driver = accept
22 local_parts = !unknown
23 retry_use_local_part
24 transport = t1
25
26
27# ------ Transports ------
28
29begin transports
30
31t1:
32 driver = appendfile
33 file = DIR/test-mail/$local_part
34 user = CALLER
35
36# End