Fix CVE-2016-1531
[exim.git] / test / confs / 0160
1 # Exim test configuration 0160
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 ignore_bounce_errors_after = 0s
17 queue_only
18
19 # ----- Routers -----
20
21 begin routers
22
23 all:
24   driver = manualroute
25   domains = ! +local_domains
26   route_list = * 127.0.0.1 byname
27   self = send
28   transport = smtp
29   no_more
30
31
32 # ----- Transports -----
33
34 begin transports
35
36 smtp:
37   driver = smtp
38   port = PORT_S
39
40
41 # ----- Retry -----
42
43
44 begin retry
45
46 * * F,2s,1s
47
48
49 # End