Testsuite: Use explicit interface for send to localhost
[exim.git] / test / confs / 0286
1 # Exim test configuration 0286
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 rfc1413_query_timeout = 0s
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11
12 # ----- Main settings -----
13
14 qualify_domain = test.ex
15 queue_only
16 remote_max_parallel = 2
17
18
19 # ----- Routers -----
20
21 begin routers
22
23 bounces:
24   driver = redirect
25   senders = :
26   data = :blackhole:
27
28 all:
29   driver = manualroute
30   route_list = * 127.0.0.1 byname
31   self = send
32   transport = smtp
33
34
35 # ----- Transports -----
36
37 begin transports
38
39 smtp:
40   driver = smtp
41   port = PORT_S
42   interface = 127.0.0.1
43   max_rcpt = 2
44   connection_max_messages = 3
45
46
47 # ----- Retry -----
48
49
50 begin retry
51
52 * * F,1h,10m
53
54
55 # End