Fix CVE-2016-1531
[exim.git] / test / confs / 0113
CommitLineData
afda344b
PH
1# Exim test configuration 0113
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b 5host_lookup_order = bydns
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
23f3dc67 10tls_advertise_hosts =
afda344b
PH
11
12# ----- Main settings -----
13
14acl_smtp_rcpt = check_recipient
15acl_smtp_data = check_message
16
17domainlist local_domains = test.ex
18qualify_domain = test.ex
19
20
21# ----- Routers -----
22
23begin routers
24
25deliver:
26 driver = accept
27 condition = ${if eq{$original_local_part}{second}{yes}{no}}
28 retry_use_local_part
29 transport = appendfile
30
31first:
32 driver = redirect
33 no_check_local_user
34 file = DIR/aux-fixed/TESTNUM.forward
35 forbid_file
36 forbid_pipe
37 local_parts = first
38 one_time
39 retry_use_local_part
40
41second:
42 driver = redirect
43 allow_defer
44 data = ${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias}}
45 retry_use_local_part
46
47
48# ----- Transports -----
49
50begin transports
51
52appendfile:
53 driver = appendfile
54 file = DIR/test-mail/$local_part
55 user = CALLER
56
57
58# ----- Retry -----
59
60
61begin retry
62
63* * F,5d,1d
64
65
66# End