Testsuite: move dsearch-dependent testcase
[exim.git] / test / confs / 5510
1 # Exim test configuration 5510
2 # Client PRDR
3
4 LOG_SELECTOR=
5
6 .include DIR/aux-var/std_conf_prefix
7
8 primary_hostname = myhost.test.ex
9
10 # ----- Main settings -----
11
12 domainlist local_domains = test.ex : *.test.ex
13
14 LOG_SELECTOR
15
16 qualify_domain = test.ex
17 trusted_users = CALLER
18
19 prdr_enable = true
20
21 acl_smtp_rcpt = accept
22 acl_smtp_data = data_acl
23
24 # ----- ACLs -----
25
26 begin acl
27
28 data_acl:
29 deny local_parts = usery
30 accept
31
32 # ----- Transports -----
33
34 begin transports
35
36 t1:
37 driver = smtp
38 hosts = 127.0.0.1
39 port = PORT_S
40 hosts_try_fastopen = :
41 allow_localhost
42 hosts_try_prdr = *
43
44 # ----- Routers -----
45
46 begin routers
47
48 r0:
49 driver = accept
50 transport = t1
51
52 # ----- Retry -----
53
54 begin retry
55
56 * * F,5d,5m
57
58 # End