CRL addition returns count of CRLs added
[exim.git] / test / confs / 0073
1 # Exim test configuration 0073
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 reply:
21 driver = accept
22 retry_use_local_part
23 senders = !
24 transport = reply
25
26 localuser:
27 driver = accept
28 check_local_user
29 transport = local_delivery
30
31
32 # ----- Transports -----
33
34 begin transports
35
36 reply:
37 driver = autoreply
38 once = DIR/spool/autolog
39 once_repeat = ${if eq {0}{0}{4s}fail}
40 text = "Test auto reply to $h_subject:"
41 to = $reply_address
42 user = EXIMUSER
43
44 local_delivery:
45 driver = appendfile
46 delivery_date_add
47 envelope_to_add
48 file = DIR/test-mail/$local_part
49 return_path_add
50
51
52 # End