Testsuite: testcase for multiple listener sockets ready
[exim.git] / test / confs / 0624
1 # Exim test configuration 0624
2
3 .include DIR/aux-var/std_conf_prefix
4
5
6 # ----- Main settings -----
7
8 domainlist local_domains = test.ex
9 qualify_domain = test.ex
10 log_selector =  +received_recipients +outgoing_port +millisec
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 =          ${if eq {c}{$local_part} {PORT_D2}{PORT_D}}
36         allow_localhost
37         max_rcpt =      1
38
39 # ----- Retry -----
40 begin retry
41 * * F,5d,1d
42
43 # End
44