Add variables for wildcard portion of local-part affix. Bug 281
[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 hosts_try_fastopen = :
38 allow_localhost
39
40 remote_smtp_hdrs:
41 driver = smtp
42 port = PORT_S
43 hosts_try_fastopen = :
44 allow_localhost
45 headers_only
46
47 # End