DKIM: Allow the DKIM ACL to override verification results. Bug 2186
[exim.git] / test / confs / 1990
1 # Exim test configuration 1990
2 # TCP Fast Open
3
4 SERVER=
5
6 .include DIR/aux-var/std_conf_prefix
7
8 primary_hostname = myhost.test.ex
9
10 # ----- Main settings -----
11
12 acl_smtp_rcpt = accept
13 log_selector = +received_recipients +millisec
14
15 # ----- Routers -----
16
17 begin routers
18
19 server:
20 driver = redirect
21 condition = ${if eq {SERVER}{server} {yes}{no}}
22 data = :blackhole:
23
24 client:
25 driver = accept
26 condition = ${if eq {SERVER}{server}{no}{yes}}
27 transport = send_to_server
28
29
30 # ----- Transports -----
31
32 begin transports
33
34 send_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
43 begin retry
44
45 * * F,5d,10s
46
47
48 # End