Multiple headers_add/remove options per router/transport - fixes bug 337
[exim.git] / test / confs / 0321
CommitLineData
afda344b
PH
1# Exim test configuration 0321
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5rfc1413_query_timeout = 0s
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13qualify_domain = test.ex
14
15
16# ----- Routers -----
17
18begin routers
19
20r1:
21 condition = ${if eq {$received_protocol}{scanned-ok} {0}{1}}
22 senders = ! :
23 driver = accept
24 transport = pipe
25
26r2:
27 driver = accept
28 transport = local_delivery
29
30
31# ----- Transports -----
32
33begin transports
34
35pipe:
36 driver = pipe
37 command = /non/exist/command -f <$sender_address> -d $pipe_addresses
38 message_prefix =
39 message_suffix =
40 check_string =
41 escape_string =
42 return_output = false
43 return_path_add = false
44 user = CALLER
45 path = /bin:/sbin:/usr/bin:/usr/sbin
46 current_directory = /
47
48local_delivery:
49 driver = appendfile
50 file = DIR/test-mail/$local_part
51 user = CALLER
52
53
54# ----- Retry -----
55
56begin retry
57
58* * F,5d,1d
59
60
61# End