Fix dcc_header content corruption.
[exim.git] / test / confs / 0226
1 # Exim test configuration 0226
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 rfc1413_query_timeout = 0s
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10
11 # ----- Main settings -----
12
13 qualify_domain = test.ex
14 timezone = EST
15
16
17 # ----- Routers -----
18
19 begin routers
20
21 bounces:
22 driver = accept
23 caseful_local_part
24 retry_use_local_part
25 senders = :
26 transport = local_delivery
27
28 notallowed:
29 driver = redirect
30 allow_defer
31 caseful_local_part
32 data = $local_part
33 domains = no.test.ex
34 forbid_file
35 forbid_pipe
36 retry_use_local_part
37
38 allowed:
39 driver = redirect
40 allow_defer
41 caseful_local_part
42 data = $local_part
43 file_transport = address_file
44 pipe_transport = address_pipe
45 retry_use_local_part
46 user = CALLER
47
48
49 # ----- Transports -----
50
51 begin transports
52
53 local_delivery:
54 driver = appendfile
55 file = DIR/test-mail/$local_part
56 user = CALLER
57
58 address_file:
59 driver = appendfile
60 user = CALLER
61
62 address_pipe:
63 driver = pipe
64 return_output
65
66
67 # ----- Retry -----
68
69
70 begin retry
71
72 * * F,5d,1d
73
74
75 # End