More new test committing.
[exim.git] / test / confs / 0095
1 # Exim test configuration 0095
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 rfc1413_query_timeout = 0s
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11
12 # ----- Main settings -----
13
14
15 # ----- Routers -----
16
17 begin routers
18
19 usery:
20   driver = accept
21   local_parts = usery
22   retry_use_local_part
23   transport = appendfile2
24
25 userz:
26   driver = accept
27   local_parts = userz
28   retry_use_local_part
29   transport = appendfile3
30
31 localuser:
32   driver = accept
33   local_parts = userx
34   transport = appendfile
35
36
37 # ----- Transports -----
38
39 begin transports
40
41 appendfile:
42   driver = appendfile
43   file = DIR/test-mail/$local_part
44   quota = $h_quota
45   quota_warn_threshold = $h_threshold
46   user = CALLER
47
48 appendfile2:
49   driver = appendfile
50   file = DIR/test-mail/$local_part
51   quota = $h_quota
52   quota_warn_threshold = $h_threshold
53   user = CALLER
54
55 appendfile3:
56   driver = appendfile
57   file = DIR/test-mail/$local_part${if eq{$sender_address}{}{.bounce}}
58   quota_warn_threshold = $h_threshold
59   user = CALLER
60   headers_add = X:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
61
62
63 # ----- Retry -----
64
65
66 begin retry
67
68 * * F,5d,1d
69
70
71 # End