summaryrefslogtreecommitdiff
path: root/test/confs/0565
blob: f7accd8d0dcb87b14c0d236ff0c2dbff902955eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Exim test configuration 0565

.include DIR/aux-var/std_conf_prefix

primary_hostname = myhost.test.ex

# ----- Main settings -----

acl_smtp_rcpt = accept


# ----- Routers -----

begin routers

hdronly_dnslookup:
  domains = test.ex
  driver = manualroute
  route_data = 127.0.0.1
  self = send
  transport = remote_smtp_hdrs

dnslookup:
  driver = manualroute
  route_data = 127.0.0.1
  self = send
  transport = remote_smtp


# ----- Transports -----

begin transports

remote_smtp:
  driver = smtp
  port = PORT_S
  hosts_try_fastopen = :
  allow_localhost

remote_smtp_hdrs:
  driver = smtp
  port = PORT_S
  hosts_try_fastopen =	:
  allow_localhost
  headers_only

# End