testsuite: abstract out common conf settings
[exim.git] / test / confs / 0417
CommitLineData
afda344b
PH
1# Exim test configuration 0417
2
3RETURN_ERROR_DETAILS = false
4
d4dc049f
JH
5.include DIR/aux-var/std_conf_prefix
6
afda344b
PH
7
8# ----- Main settings -----
9
10primary_hostname = mail.test.ex
11qualify_domain = test.ex
12
13acl_smtp_rcpt = rcpt
14smtp_return_error_details = RETURN_ERROR_DETAILS
15
16
17# ----- ACLs -----
18
19begin acl
20
21rcpt:
22 require verify = sender
23
24
25# ----- Routers -----
26
27begin routers
28
29r1:
30 driver = dnslookup
31 transport = t1
32
33
34# ----- Transports -----
35
36begin transports
37
38t1:
39 driver = smtp
40
41# End