Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 0095
1 # Exim test configuration 0095
2
3 ERT=
4 QWM=
5
6 .include DIR/aux-var/std_conf_prefix
7
8 primary_hostname = myhost.test.ex
9
10 # ----- Main settings -----
11
12 ERT
13
14 # ----- Routers -----
15
16 begin routers
17
18 usery:
19   driver = accept
20   local_parts = usery
21   retry_use_local_part
22   transport = appendfile2
23
24 userz:
25   driver = accept
26   local_parts = userz
27   retry_use_local_part
28   transport = appendfile3
29
30 localuser:
31   driver = accept
32   local_parts = userx
33   transport = appendfile
34
35
36 # ----- Transports -----
37
38 begin transports
39
40 appendfile:
41   driver = appendfile
42   file = DIR/test-mail/$local_part
43   create_file = DIR/test-mail
44   quota = $h_quota
45   quota_warn_threshold = $h_threshold
46   QWM
47   user = CALLER
48
49 appendfile2:
50   driver = appendfile
51   file = DIR/test-mail/$local_part
52   create_file = DIR/test-mail
53   quota = $h_quota
54   quota_warn_threshold = $h_threshold
55   user = CALLER
56
57 appendfile3:
58   driver = appendfile
59   file = DIR/test-mail/${local_part}${if eq{$sender_address}{}{.bounce}}
60   create_file = DIR/test-mail
61   quota_warn_threshold = $h_threshold
62   user = CALLER
63   headers_add = X:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
64
65
66 # ----- Retry -----
67
68
69 begin retry
70
71 * * F,5d,1d
72
73
74 # End