Testsuite: move dsearch-dependent testcase
[exim.git] / test / confs / 1990
CommitLineData
a2673768
JH
1# Exim test configuration 1990
2# TCP Fast Open
3
4SERVER=
5
6.include DIR/aux-var/std_conf_prefix
7
8primary_hostname = myhost.test.ex
9
10# ----- Main settings -----
11
12acl_smtp_rcpt = accept
13log_selector = +received_recipients +millisec
14
15# ----- Routers -----
16
17begin routers
18
19server:
20 driver = redirect
21 condition = ${if eq {SERVER}{server} {yes}{no}}
22 data = :blackhole:
23
24client:
25 driver = accept
26 condition = ${if eq {SERVER}{server}{no}{yes}}
27 transport = send_to_server
28
29
30# ----- Transports -----
31
32begin transports
33
34send_to_server:
35 driver = smtp
36 allow_localhost
37 hosts = 127.0.0.1
38 port = PORT_D
39 hosts_try_fastopen = *
40
41# ----- Retry -----
42
43begin retry
44
45* * F,5d,10s
46
47
48# End