Fix CVE-2016-1531
[exim.git] / test / confs / 0202
1 # Exim test configuration 0202
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
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 acl_smtp_rcpt = accept
14
15 qualify_domain = test.ex
16
17 queue_only
18 queue_run_in_order
19
20
21 # ----- Routers -----
22
23 begin routers
24
25 # ----- Directors -----
26
27 all:
28   driver = accept
29   retry_use_local_part
30   transport = local_delivery
31
32
33 # ----- Transports -----
34
35 begin transports
36
37 local_delivery:
38   driver = appendfile
39   file = DIR/test-mail/$local_part
40   user = CALLER
41
42 # End