Fix dkim_verify_signers option. Bug 2366
[exim.git] / test / confs / 0073
CommitLineData
afda344b
PH
1# Exim test configuration 0073
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b
PH
5
6# ----- Main settings -----
7
8qualify_domain = test.ex
9
10
11# ----- Routers -----
12
13begin routers
14
15reply:
16 driver = accept
17 retry_use_local_part
18 senders = !
19 transport = reply
20
21localuser:
22 driver = accept
23 check_local_user
24 transport = local_delivery
25
26
27# ----- Transports -----
28
29begin transports
30
31reply:
32 driver = autoreply
33 once = DIR/spool/autolog
34 once_repeat = ${if eq {0}{0}{4s}fail}
35 text = "Test auto reply to $h_subject:"
36 to = $reply_address
37 user = EXIMUSER
38
39local_delivery:
40 driver = appendfile
41 delivery_date_add
42 envelope_to_add
43 file = DIR/test-mail/$local_part
44 return_path_add
45
46
47# End