DKIM: Allow the DKIM ACL to override verification results. Bug 2186
[exim.git] / test / confs / 0321
1 # Exim test configuration 0321
2
3 .include DIR/aux-var/std_conf_prefix
4
5
6 # ----- Main settings -----
7
8 qualify_domain = test.ex
9
10
11 # ----- Routers -----
12
13 begin routers
14
15 r1:
16 condition = ${if eq {$received_protocol}{scanned-ok} {0}{1}}
17 senders = ! :
18 driver = accept
19 transport = pipe
20
21 r2:
22 driver = accept
23 transport = local_delivery
24
25
26 # ----- Transports -----
27
28 begin transports
29
30 pipe:
31 driver = pipe
32 command = /non/exist/command -f <$sender_address> -d $pipe_addresses
33 message_prefix =
34 message_suffix =
35 check_string =
36 escape_string =
37 return_output = false
38 return_path_add = false
39 user = CALLER
40 path = /bin:/sbin:/usr/bin:/usr/sbin
41 current_directory = /
42
43 local_delivery:
44 driver = appendfile
45 file = DIR/test-mail/$local_part
46 user = CALLER
47
48
49 # ----- Retry -----
50
51 begin retry
52
53 * * F,5d,1d
54
55
56 # End