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