Fix CVE-2016-1531
[exim.git] / test / confs / 0251
CommitLineData
afda344b
PH
1# Exim test configuration 0251
2
3SERVER =
4
5exim_path = EXIM_PATH
bc3c7bb7 6keep_environment =
afda344b
PH
7host_lookup_order = bydns
8primary_hostname = myhost.test.ex
afda344b
PH
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/SERVER%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
23f3dc67 13tls_advertise_hosts =
afda344b
PH
14
15# ----- Main settings -----
16
17acl_smtp_rcpt = check_recipient
18
19domainlist local_domains = test.ex : *.test.ex
20
21# ----- ACL -----
22
23begin acl
24
25check_recipient:
26 deny message = unrouteable address
27 !verify = recipient
28 accept domains = +local_domains
29 deny message = relay not permitted
30
31
32# ----- Routers -----
33
34begin routers
35
36exeter_listr:
37 driver = redirect
38 no_check_local_user
39 domains = listr.test.ex
40 errors_to = ${local_part}-request@test.ex
41 file = DIR/aux-fixed/TESTNUM.list.${local_part}
42 forbid_file
43 forbid_pipe
44 one_time
45 require_files = DIR/aux-fixed/TESTNUM.restrict.${local_part}
46 retry_use_local_part
47 senders = ${if exists{DIR/aux-fixed/TESTNUM.restrict.${local_part}} \
48 {DIR/aux-fixed/TESTNUM.restrict.${local_part}}{zzzz}}
49 syntax_errors_to = ${local_part}-request@test.ex
50
51exeter_listf:
52 driver = accept
53 domains = listr.test.ex
54 no_more
55 retry_use_local_part
56 transport = not_allowed
57
58
59# ----- Transports -----
60
61begin transports
62
63not_allowed:
64 driver = autoreply
65
66
67# ----- Retry -----
68
69
70begin retry
71
72* * F,5d,10s
73
74
75# End