Logging: add I= element to transport-defer lines. Bug 2675
[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_try_fastopen = :
50   hosts = 127.0.0.1
51   allow_localhost
52   command_timeout = 2s
53
54
55 # ----- Retry -----
56
57 begin retry
58
59 * * F,1d,1s
60
61
62 # End