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