Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 3206
1 # Exim test configuration 3206
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6 qualify_domain = test.ex
7
8 # ----- Main settings -----
9
10 domainlist local_domains = test.ex : !*.remote.ex : testdb;defer
11
12 hold_domains = !test.ex : hold.remote.ex : !*.go.remote.ex : testdb;defer
13 queue_domains = !test.ex : queue.go.remote.ex : testdb;defer
14
15
16 # ----- Routers -----
17
18 begin routers
19
20 fail_remote_domains:
21   driver = redirect
22   domains = ! +local_domains
23   data = :fail: unrouteable mail domain "$domain"
24
25 all:
26   driver = accept
27   retry_use_local_part
28   transport = local_delivery
29
30
31 # ----- Transports -----
32
33 begin transports
34
35 local_delivery:
36   driver = appendfile
37   envelope_to_add
38   file = DIR/test-mail/$local_part
39   create_file = DIR/test-mail
40   user = CALLER
41
42
43 # ----- Retry -----
44
45
46 begin retry
47
48 * * F,1h,10m
49
50
51 # End