Testsuite: avoid assuming 127.0.0.2 is a viable sending address
[exim.git] / test / confs / 0610
CommitLineData
6f6dedcc
JH
1# Exim test configuration 0610
2
3SERVER =
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7#primary_hostname = myhost.test.ex
8rfc1413_query_timeout = 0s
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/SERVER%slog
11log_selector = +sender_on_delivery
12gecos_pattern = ""
13gecos_name = CALLER_NAME
23f3dc67 14tls_advertise_hosts =
6f6dedcc
JH
15
16# ----- Main settings -----
17
18acl_smtp_connect = conn_chk
19acl_smtp_rcpt = accept
20
21untrusted_set_sender = *
22queue_only
23queue_run_in_order
24
25# ----- ACL -----
26
27begin acl
28
29conn_chk:
30 defer condition = ${if eq {SERVER}{server}}
31 accept
32
33# ----- Routers -----
34
35begin routers
36
37client:
38 driver = accept
39 transport = $sender_address_local_part
40
41# ----- Transports -----
42
43begin transports
44
45t1:
46 driver = smtp
47 allow_localhost
48 hosts = 127.0.0.1
49 port = PORT_D
50 interface = 127.0.0.1
51
52t2:
53 driver = smtp
54 allow_localhost
55 hosts = 127.0.0.1
56 port = PORT_D
78ca7fd5 57 interface = HOSTIPV4
6f6dedcc
JH
58
59# ----- Retry -----
60
61begin retry
62
63* * F,5d,10s
64
65# End
66