update to pre-4.87 master
[exim.git] / test / confs / 0565
CommitLineData
12dd53c7
PP
1# Exim test configuration 0565
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
12dd53c7
PP
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
bfe645c1 10tls_advertise_hosts =
12dd53c7
PP
11
12# ----- Main settings -----
13
14acl_smtp_rcpt = accept
15
16
17# ----- Routers -----
18
19begin routers
20
21hdronly_dnslookup:
22 domains = test.ex
23 driver = manualroute
24 route_data = 127.0.0.1
25 self = send
26 transport = remote_smtp_hdrs
27
28dnslookup:
29 driver = manualroute
30 route_data = 127.0.0.1
31 self = send
32 transport = remote_smtp
33
34
35# ----- Transports -----
36
37begin transports
38
39remote_smtp:
40 driver = smtp
41 port = PORT_S
42 allow_localhost
43
44remote_smtp_hdrs:
45 driver = smtp
46 port = PORT_S
47 allow_localhost
48 headers_only
49
50# End