CRL addition returns count of CRLs added
[exim.git] / test / confs / 0359
1 # Exim test configuration 0359
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 rfc1413_query_timeout = 0s
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10
11 # ----- Main settings -----
12
13 qualify_domain = test.ex
14
15
16 # ----- Routers -----
17
18 begin routers
19
20 r1:
21 driver = accept
22 transport = t1
23
24
25 # ----- Transports -----
26
27 begin transports
28
29 t1:
30 driver = appendfile
31 file = /dev/null
32 shadow_transport = t2
33 shadow_condition = ${if eq{$local_part}{userx}{yes}{no}}
34 user = CALLER
35
36 t2:
37 driver = appendfile
38 file = DIR/test-mail/$local_part
39 headers_add = X-shadowed:
40 user = CALLER
41
42
43 # ----- Retry -----
44
45 begin retry
46
47 * * F,3s,1s; G,1h,2s,2
48
49 # End