Testsuite: Explicit disabling of identd no longer needed
[exim.git] / test / confs / 0284
CommitLineData
afda344b
PH
1# Exim test configuration 0284
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13qualify_domain = test.ex
14
15
16# ----- Routers -----
17
18begin routers
19
20all:
21 driver = accept
22 address_data = ${if match{$local_part}{^(.)}{$1}}
23 transport = ${if match{$local_part}{^.*-(.*)\$}{$1}fail}
24
25
26# ----- Transports -----
27
28begin transports
29
30t1:
31 driver = appendfile
32 batch_max = 100
33 file = DIR/test-mail/batched
34 envelope_to_add
35 user = CALLER
36
37t2:
38 driver = appendfile
39 batch_max = 100
40 file = DIR/test-mail/$local_part
41 envelope_to_add
42 user = CALLER
43
44t3:
45 driver = appendfile
46 batch_max = 100
47 file = DIR/test-mail/$domain
48 envelope_to_add
49 user = CALLER
50
51t4:
52 driver = appendfile
53 batch_max = 100
54 batch_id = $address_data
55 file = DIR/test-mail/batched
56 envelope_to_add
57 user = CALLER
58
59# ----- Retry -----
60
61begin retry
62
63* * F,1d,1d
64
65# End