testsuite: abstract out common conf settings
[exim.git] / test / confs / 0565
1 # Exim test configuration 0565
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 acl_smtp_rcpt = accept
10
11
12 # ----- Routers -----
13
14 begin routers
15
16 hdronly_dnslookup:
17   domains = test.ex
18   driver = manualroute
19   route_data = 127.0.0.1
20   self = send
21   transport = remote_smtp_hdrs
22
23 dnslookup:
24   driver = manualroute
25   route_data = 127.0.0.1
26   self = send
27   transport = remote_smtp
28
29
30 # ----- Transports -----
31
32 begin transports
33
34 remote_smtp:
35   driver = smtp
36   port = PORT_S
37   allow_localhost
38
39 remote_smtp_hdrs:
40   driver = smtp
41   port = PORT_S
42   allow_localhost
43   headers_only
44
45 # End