Fix CVE-2016-1531
[exim.git] / test / confs / 0033
1 # Exim test configuration 0033
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
6 primary_hostname = myhost.test.ex
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11
12 # ----- Main settings -----
13
14 domainlist local_domains = test.ex : *.test.ex
15
16 # ----- Routers -----
17
18 begin routers
19
20 all:
21   driver = manualroute
22   domains = ! +local_domains
23   route_list = * 127.0.0.1 byname
24   self = send
25   transport = smtp
26   no_more
27
28 d1:
29   driver = redirect
30   no_check_local_user
31   file = DIR/aux-fixed/TESTNUM.list
32   forbid_file
33   forbid_filter_reply
34   forbid_pipe
35   one_time
36   retry_use_local_part
37
38
39 # ----- Transports -----
40
41 begin transports
42
43 smtp:
44   driver = smtp
45   port = PORT_S
46
47 # End