Testsuite: Use explicit interface for send to localhost
[exim.git] / test / confs / 5510
CommitLineData
fd98a5c6
JH
1# Exim test configuration 5510
2# Client PRDR
3
4LOG_SELECTOR=
5
6exim_path = EXIM_PATH
7host_lookup_order = bydns
8primary_hostname = myhost.test.ex
9rfc1413_query_timeout = 0s
10spool_directory = DIR/spool
11log_file_path = DIR/spool/log/%slog
12gecos_pattern = ""
13gecos_name = CALLER_NAME
14
15# ----- Main settings -----
16
17domainlist local_domains = test.ex : *.test.ex
18
19LOG_SELECTOR
20
21qualify_domain = test.ex
22trusted_users = CALLER
23
24prdr_enable = true
25
26acl_smtp_rcpt = accept
27acl_smtp_data = data_acl
28
29# ----- ACLs -----
30
31begin acl
32
33data_acl:
34 deny local_parts = usery
35 accept
36
37# ----- Transports -----
38
39begin transports
40
41t1:
42 driver = smtp
43 hosts = 127.0.0.1
44 port = PORT_S
30079bc1 45 interface = 127.0.0.1
fd98a5c6
JH
46 allow_localhost
47 hosts_try_prdr = *
48
49# ----- Routers -----
50
51begin routers
52
53r0:
54 driver = accept
55 transport = t1
56
57# ----- Retry -----
58
59begin retry
60
61* * F,5d,5m
62
63# End