Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 0215
1 # Exim test configuration 0215
2
3 IGNORE_QUOTA=false
4 AUTHS=
5 AUTHF=
6
7 .include DIR/aux-var/std_conf_prefix
8
9 primary_hostname = myhost.test.ex
10
11 # ----- Main settings -----
12
13 domainlist local_domains = test.ex : *.test.ex
14 log_selector =  +sender_on_delivery
15
16
17 # ----- Routers -----
18
19 begin routers
20
21 bounces:
22   driver = redirect
23   allow_defer
24   data = :blackhole:
25   retry_use_local_part
26   senders = :
27
28 smartuser:
29   driver = accept
30   retry_use_local_part
31   transport = lmtp
32
33
34 # ----- Transports -----
35
36 begin transports
37
38 lmtp:
39   driver = smtp
40   allow_localhost
41   hosts = 127.0.0.1
42   port = PORT_S
43   hosts_try_fastopen = :
44   protocol = LMTP
45   lmtp_ignore_quota = IGNORE_QUOTA
46   AUTHS
47   AUTHF
48
49
50 # ----- Retry -----
51
52
53 begin retry
54
55 * * F,5d,1d
56
57
58 # End