Fix CVE-2016-1531
[exim.git] / test / confs / 0131
1 # Exim test configuration 0131
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 tls_advertise_hosts =
11
12 # ----- Main settings -----
13
14 domainlist local_domains = test.ex
15 qualify_domain = test.ex
16
17
18 # ----- Routers -----
19
20 begin routers
21
22 islocal:
23   driver = manualroute
24   domains = ! +local_domains
25   route_list = * localhost byname
26   self = pass
27   no_more
28   address_data = $address_data-islocal
29
30 forward:
31   driver = redirect
32   allow_filter
33   no_check_local_user
34   file = DIR/aux-fixed/TESTNUM.$local_part
35   retry_use_local_part
36   user = CALLER
37   address_data = $address_data-forward
38
39 local:
40   driver = accept
41   retry_use_local_part
42   transport = appendfile
43   address_data = $address_data-local
44
45
46 # ----- Transports -----
47
48 begin transports
49
50 appendfile:
51   driver = appendfile
52   file = DIR/test-mail/$local_part
53   user = CALLER
54   headers_add = Address-Data: >$address_data<
55
56
57 # ----- Retry -----
58
59
60 begin retry
61
62 * * F,1d,15m
63
64
65 # End