Fix CVE-2016-1531
[exim.git] / test / confs / 0215
1 # Exim test configuration 0215
2
3 IGNORE_QUOTA=false
4 AUTHS=
5 AUTHF=
6
7 exim_path = EXIM_PATH
8 keep_environment =
9 host_lookup_order = bydns
10 primary_hostname = myhost.test.ex
11 spool_directory = DIR/spool
12 log_file_path = DIR/spool/log/%slog
13 gecos_pattern = ""
14 gecos_name = CALLER_NAME
15 tls_advertise_hosts =
16
17 # ----- Main settings -----
18
19 domainlist local_domains = test.ex : *.test.ex
20 log_selector =  +sender_on_delivery
21
22
23 # ----- Routers -----
24
25 begin routers
26
27 bounces:
28   driver = redirect
29   allow_defer
30   data = :blackhole:
31   retry_use_local_part
32   senders = :
33
34 smartuser:
35   driver = accept
36   retry_use_local_part
37   transport = lmtp
38
39
40 # ----- Transports -----
41
42 begin transports
43
44 lmtp:
45   driver = smtp
46   allow_localhost
47   hosts = 127.0.0.1
48   port = PORT_S
49   protocol = LMTP
50   lmtp_ignore_quota = IGNORE_QUOTA
51   AUTHS
52   AUTHF
53
54
55 # ----- Retry -----
56
57
58 begin retry
59
60 * * F,5d,1d
61
62
63 # End