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