update to pre-4.87 master
[exim.git] / test / confs / 0533
CommitLineData
9b8fadde
PH
1# Exim test configuration 0533
2
9b8fadde
PH
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
9b8fadde
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
bfe645c1 10tls_advertise_hosts =
9b8fadde
PH
11
12# ----- Main settings -----
13
9b8fadde 14
9b8fadde 15
75758eeb
PH
16# ----- Routers -----
17
18begin routers
19
20r1:
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
27r2:
28 driver = redirect
29 local_part_prefix = pipe-
30 local_part_suffix = =*
e2cebd74 31 caseful_local_part = true
75758eeb
PH
32 data = |${substr_1:$local_part_suffix}
33 pipe_transport = t2
34
35
36# ----- Transports -----
37
38begin transports
39
40t1:
41 driver = appendfile
42 envelope_to_add
43 user = CALLER
44 batch_max = 10
9b8fadde 45
75758eeb
PH
46t2:
47 driver = pipe
48 user = CALLER
49 batch_max = 10
9b8fadde
PH
50
51# End