Testsuite: Use explicit interface for send to localhost
[exim.git] / test / confs / 0209
1 # Exim test configuration 0209
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 rfc1413_query_timeout = 0s
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10
11 # ----- Main settings -----
12
13 acl_smtp_rcpt = check_recipient
14 domainlist local_domains = test.ex
15 qualify_domain = test.ex
16 queue_run_in_order
17
18 # ----- ACL -----
19
20 begin acl
21
22 check_recipient:
23   accept  hosts = :
24   accept  domains = +local_domains
25   deny    message = relay not permitted
26
27
28 # ----- Routers -----
29
30 begin routers
31
32 others:
33   driver = manualroute
34   domains = ! +local_domains
35   route_list = * 127.0.0.1 byname
36   self = send
37   transport = smtp
38   no_more
39
40 # ----- Transports -----
41
42 begin transports
43
44 smtp:
45   driver = smtp
46   port = PORT_S
47   interface = 127.0.0.1
48
49
50 # ----- Retry -----
51
52 begin retry
53
54 * * F,5d,8h
55
56
57 # End