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 tls_advertise_hosts =
12
13 # ----- Main settings -----
14
15 domainlist local_domains = test.ex : *.test.ex
16
17 ignore_bounce_errors_after = 0s
18 queue_only
19
20 # ----- Routers -----
21
22 begin routers
23
24 all:
25   driver = manualroute
26   domains = ! +local_domains
27   route_list = * 127.0.0.1 byname
28   self = send
29   transport = smtp
30   no_more
31
32
33 # ----- Transports -----
34
35 begin transports
36
37 smtp:
38   driver = smtp
39   port = PORT_S
40
41
42 # ----- Retry -----
43
44
45 begin retry
46
47 * * F,2s,1s
48
49
50 # End