Testsuite: Use explicit interface for send to localhost
[exim.git] / test / confs / 0413
1 # Exim test configuration 0413
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 rfc1413_query_timeout = 0s
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10
11 # ----- Main settings -----
12
13 primary_hostname = mail.test.ex
14 qualify_domain = test.ex
15
16 acl_smtp_mail = mail
17
18
19 # ----- ACL -----
20
21 begin acl
22
23 mail:
24   accept   verify = sender/callout
25
26
27 # ----- Routers -----
28
29 begin routers
30
31 r1:
32   local_parts = r1
33   driver = accept
34   transport = t1
35
36 r2:
37   local_parts = r2
38   driver = manualroute
39   route_list = * HOSTIPV4
40   self = send
41   transport = t1
42
43 r3:
44   local_parts = r3
45   driver = manualroute
46   route_list = * HOSTIPV4
47   self = send
48   transport = t2
49
50 # ----- Transports -----
51
52 begin transports
53
54 t1:
55   driver = smtp
56   hosts = 127.0.0.1
57   allow_localhost
58   port = PORT_S
59   interface = ${if eq {$host}{127.0.0.1} {127.0.0.1}}
60
61 t2:
62   driver = smtp
63   hosts = 127.0.0.1
64   hosts_override
65   allow_localhost
66   port = PORT_S
67   interface = 127.0.0.1
68
69
70 # End