Fix CVE-2016-1531
[exim.git] / test / confs / 0217
1 # Exim test configuration 0217
2
3 HAP=
4
5 exim_path = EXIM_PATH
6 keep_environment =
7 host_lookup_order = bydns
8 primary_hostname = myhost.test.ex
9 spool_directory = DIR/spool
10 log_file_path = DIR/spool/log/%slog
11 gecos_pattern = ""
12 gecos_name = CALLER_NAME
13 tls_advertise_hosts =
14
15 # ----- Main settings -----
16
17 qualify_domain = test.ex
18 ignore_bounce_errors_after = 0s
19
20
21 # ----- Routers -----
22
23 begin routers
24
25 bounce:
26   driver = redirect
27   allow_defer
28   allow_fail
29   data = :fail: just discard
30   retry_use_local_part
31   senders = :
32
33 client:
34   driver = accept
35   retry_use_local_part
36   transport = send_to_server
37
38
39 # ----- Transports -----
40
41 begin transports
42
43 send_to_server:
44   driver = smtp
45   allow_localhost
46   command_timeout = 1s
47   hosts = 127.0.0.1
48   port = PORT_S
49   HAP
50   max_rcpt = 1000
51
52 # ----- Retry -----
53
54
55 begin retry
56
57 * * F,5d,10s
58
59
60 # End