Another small test tweak.
[exim.git] / test / confs / 0533
1 # Exim test configuration 0533
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 rfc1413_query_timeout = 0s
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11
12 # ----- Main settings -----
13
14
15
16 # ----- Routers -----
17
18 begin routers
19
20 r1:
21 driver = redirect
22 local_part_prefix = file-
23 local_part_suffix = =*
24 data = DIR/test-mail/${substr_1:$local_part_suffix}
25 file_transport = t1
26
27 r2:
28 driver = redirect
29 local_part_prefix = pipe-
30 local_part_suffix = =*
31 data = |${substr_1:$local_part_suffix}
32 pipe_transport = t2
33
34
35 # ----- Transports -----
36
37 begin transports
38
39 t1:
40 driver = appendfile
41 envelope_to_add
42 user = CALLER
43 batch_max = 10
44
45 t2:
46 driver = pipe
47 user = CALLER
48 batch_max = 10
49
50 # End