summaryrefslogtreecommitdiff
path: root/test/confs/9901
blob: a33223b05a77758fb6660c97e4c4d4cc2ecaba34 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Exim test configuration 9901

COM=
SERVER=

.include DIR/aux-var/std_conf_prefix

primary_hostname = myhost.test.ex

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

acl_smtp_rcpt = accept
qualify_domain = test.ex
queue_run_in_order
smtp_receive_timeout = 1s


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

begin routers

# These are commented out for the server

COM r1:
COM   driver = accept
COM   domains = no.delay
COM   transport = t1

COM r2:
COM   driver = dnslookup
COM   transport = t1

# This is the only one available for the server

r3:
  driver = accept
  transport = t2


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

begin transports

t1:
  driver = smtp
  allow_localhost
  hosts = 127.0.0.1
  hosts_override
  port = PORT_D
  hosts_try_fastopen =	:

t2:
  driver = appendfile
  file = /dev/null
  user = CALLER


# ----- Retry -----

begin retry

* * F,1d,10m


# End