Testsuite: Use explicit interface for send to localhost
[exim.git] / test / confs / 0525
CommitLineData
afda344b
PH
1# Exim test configuration 0525
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
6rfc1413_query_timeout = 0s
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11
12# ----- Main settings -----
13
14acl_smtp_rcpt = accept
15
16
17# ----- Routers -----
18
19begin routers
20
21r0:
22 driver = redirect
23 senders = :
24 data = /dev/null
25 user = CALLER
26
27r1:
28 driver = accept
29 transport = t1
30
31
32# ----- Transports -----
33
34begin transports
35
36t1:
37 driver = smtp
38 hosts = 127.0.0.1
39 port = PORT_S
30079bc1 40 interface = 127.0.0.1
afda344b
PH
41 allow_localhost
42 data_timeout = 1s
43
44
45# ----- Retry -----
46
47begin retry
48
49* * F,1d,1h
50
51# End