Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 5003
1 # Exim test configuration 5003
2
3 .include DIR/aux-var/std_conf_prefix
4
5
6 # ----- Main settings -----
7
8 qualify_domain = test.ex
9
10
11 # ----- Routers -----
12
13 begin routers
14
15 all:
16   driver = accept
17   retry_use_local_part
18   transport = local_delivery${if eq{$local_part}{dir3}{2}}
19
20
21 # ----- Transports -----
22
23 begin transports
24
25 local_delivery:
26   driver = appendfile
27   directory = DIR/test-mail/$local_part
28   create_file = DIR/test-mail
29   maildir_format
30   quota = 1.5K
31   user = CALLER
32
33 local_delivery2:
34   driver = appendfile
35   directory = DIR/test-mail/$local_part
36   create_file = DIR/test-mail
37   maildir_format
38   quota = 1.5K
39   user = CALLER
40
41
42 # ----- Retry -----
43
44
45 begin retry
46
47 * * F,5d,1d
48
49
50 # End