Testsuite: munge for non-WITH_CONTENT_SCAN builds
[exim.git] / test / confs / 0625
1 # Exim test configuration 0625
2
3 .include DIR/aux-var/std_conf_prefix
4
5 # ----- Main settings -----
6
7 domainlist local_domains = test.ex
8 qualify_domain = test.ex
9 log_selector =  +received_recipients +outgoing_port +millisec
10 smtp_backlog_monitor = 1
11
12 smtp_accept_max_per_host = ${acl {delay}}10
13 remote_max_parallel = 3
14
15 acl_smtp_rcpt = discard
16
17 # ----- ACL -----
18 begin acl
19
20 delay:
21   accept
22          delay = 2s
23
24 # ----- Routers -----
25 begin routers
26 r:
27         driver =        accept
28         transport =     smtp
29
30 # ----- Trnasport -----
31 begin transports
32 smtp:
33         driver =        smtp
34         hosts =         127.0.0.1
35         port =          PORT_D
36         allow_localhost
37         hosts_try_fastopen =
38         max_rcpt =      1
39
40 # ----- Retry -----
41 begin retry
42 * * F,5d,1d
43
44 # End
45