Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[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 log_selector = +connection_id +received_recipients
18
19 # ----- ACL -----
20
21 begin ACL
22
23 check_connect:
24   accept DDF
25
26 check_rcpt:
27   accept delay = 1s
28
29 check_not:
30   accept delay = 1s
31          logwrite = Accept non-SMTP
32
33
34 # ----- Routers -----
35
36 begin routers
37
38 r1:
39   driver = accept
40   transport = t1
41
42
43 # ----- Transports -----
44
45 begin transports
46
47 t1:
48   driver = smtp
49   port = PORT_D
50   hosts_try_fastopen = :
51   hosts = 127.0.0.1
52   allow_localhost
53   command_timeout = 2s
54
55
56 # ----- Retry -----
57
58 begin retry
59
60 * * F,1d,1s
61
62
63 # End