Testsuite: Use explicit interface for send to localhost
[exim.git] / test / confs / 0215
1 # Exim test configuration 0215
2
3 IGNORE_QUOTA=false
4 AUTHS=
5 AUTHF=
6
7 exim_path = EXIM_PATH
8 host_lookup_order = bydns
9 primary_hostname = myhost.test.ex
10 rfc1413_query_timeout = 0s
11 spool_directory = DIR/spool
12 log_file_path = DIR/spool/log/%slog
13 gecos_pattern = ""
14 gecos_name = CALLER_NAME
15
16 # ----- Main settings -----
17
18 domainlist local_domains = test.ex : *.test.ex
19 log_selector = +sender_on_delivery
20
21
22 # ----- Routers -----
23
24 begin routers
25
26 bounces:
27 driver = redirect
28 allow_defer
29 data = :blackhole:
30 retry_use_local_part
31 senders = :
32
33 smartuser:
34 driver = accept
35 retry_use_local_part
36 transport = lmtp
37
38
39 # ----- Transports -----
40
41 begin transports
42
43 lmtp:
44 driver = smtp
45 allow_localhost
46 hosts = 127.0.0.1
47 port = PORT_S
48 interface = 127.0.0.1
49 protocol = LMTP
50 lmtp_ignore_quota = IGNORE_QUOTA
51 AUTHS
52 AUTHF
53
54
55 # ----- Retry -----
56
57
58 begin retry
59
60 * * F,5d,1d
61
62
63 # End