510f3f57324464f12a6394e8cdb7253a6988fff3
[exim.git] / test / confs / 0565
1 # Exim test configuration 0565
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 acl_smtp_rcpt = accept
15
16
17 # ----- Routers -----
18
19 begin routers
20
21 hdronly_dnslookup:
22 domains = test.ex
23 driver = manualroute
24 route_data = 127.0.0.1
25 self = send
26 transport = remote_smtp_hdrs
27
28 dnslookup:
29 driver = manualroute
30 route_data = 127.0.0.1
31 self = send
32 transport = remote_smtp
33
34
35 # ----- Transports -----
36
37 begin transports
38
39 remote_smtp:
40 driver = smtp
41 port = PORT_S
42 interface = 127.0.0.1
43 allow_localhost
44
45 remote_smtp_hdrs:
46 driver = smtp
47 port = PORT_S
48 interface = 127.0.0.1
49 allow_localhost
50 headers_only
51
52 # End