Testsuite: remove unused acl option from testcase
[exim.git] / test / confs / 0552
CommitLineData
047bdd8c
PH
1# Exim test configuration 0552
2
3DDF=
4SERVER=
5
6exim_path = EXIM_PATH
7host_lookup_order = bydns
8primary_hostname = myhost.test.ex
047bdd8c
PH
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/SERVER%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
13
14# ----- Main settings -----
15
16acl_not_smtp = check_not
17acl_smtp_connect = check_connect
18acl_smtp_rcpt = check_rcpt
19
20queue_only
21
22# ----- ACL -----
23
24begin ACL
25
26check_connect:
27 accept DDF
28
29check_rcpt:
30 accept delay = 1s
31
32check_not:
33 accept delay = 1s
34 logwrite = Accept non-SMTP
35
36
37# ----- Routers -----
38
39begin routers
40
41r1:
42 driver = accept
43 transport = t1
44
45
46# ----- Transports -----
47
48begin transports
49
50t1:
51 driver = smtp
30079bc1 52 port = PORT_D
7eb59ff9 53 hosts = 127.0.0.1
047bdd8c
PH
54 allow_localhost
55 command_timeout = 2s
56
57
58# ----- Retry -----
59
60begin retry
61
62* * F,1d,1s
63
64
65# End