Testsuite: build a generic tls enabled client: client-anytls
[exim.git] / test / confs / 0321
CommitLineData
afda344b
PH
1# Exim test configuration 0321
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
15r1:
16 condition = ${if eq {$received_protocol}{scanned-ok} {0}{1}}
17 senders = ! :
18 driver = accept
19 transport = pipe
20
21r2:
22 driver = accept
23 transport = local_delivery
24
25
26# ----- Transports -----
27
28begin transports
29
30pipe:
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
43local_delivery:
44 driver = appendfile
0d2e392e 45 file = DIR/test-mail/${bless:$local_part}
afda344b
PH
46 user = CALLER
47
48
49# ----- Retry -----
50
51begin retry
52
53* * F,5d,1d
54
55
56# End