Testsuite: Use explicit interface for send to localhost
[exim.git] / test / confs / 0216
1 # Exim test configuration 0216
2
3 SERVER=
4
5 exim_path = EXIM_PATH
6 host_lookup_order = bydns
7 primary_hostname = myhost.test.ex
8 rfc1413_query_timeout = 0s
9 spool_directory = DIR/spool
10 log_file_path = DIR/spool/log/SERVER%slog
11 gecos_pattern = ""
12 gecos_name = CALLER_NAME
13
14
15 # ----- Main settings -----
16
17 acl_smtp_rcpt = accept
18 queue_only
19 queue_run_in_order
20
21
22 # ----- Routers -----
23
24 begin routers
25
26 client:
27 driver = accept
28 condition = ${if eq {SERVER}{server}{no}{yes}}
29 retry_use_local_part
30 transport = send_to_server
31
32
33 # ----- Transports -----
34
35 begin transports
36
37 send_to_server:
38 driver = smtp
39 allow_localhost
40 hosts = 127.0.0.1
41 port = PORT_D
42 interface = 127.0.0.1
43 max_rcpt = 0
44
45
46 # ----- Retry -----
47
48
49 begin retry
50
51 * * F,5d,10s
52
53
54 # End