testsuite: abstract out common conf settings
[exim.git] / test / confs / 0552
1 # Exim test configuration 0552
2
3 DDF=
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_not_smtp = check_not
13 acl_smtp_connect = check_connect
14 acl_smtp_rcpt = check_rcpt
15
16 queue_only
17
18 # ----- ACL -----
19
20 begin ACL
21
22 check_connect:
23   accept DDF
24
25 check_rcpt:
26   accept delay = 1s
27
28 check_not:
29   accept delay = 1s
30          logwrite = Accept non-SMTP
31
32
33 # ----- Routers -----
34
35 begin routers
36
37 r1:
38   driver = accept
39   transport = t1
40
41
42 # ----- Transports -----
43
44 begin transports
45
46 t1:
47   driver = smtp
48   port = PORT_D
49   hosts = 127.0.0.1
50   allow_localhost
51   command_timeout = 2s
52
53
54 # ----- Retry -----
55
56 begin retry
57
58 * * F,1d,1s
59
60
61 # End