CRL addition returns count of CRLs added
[exim.git] / test / confs / 0216
CommitLineData
afda344b
PH
1# Exim test configuration 0216
2
3SERVER=
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7primary_hostname = myhost.test.ex
8rfc1413_query_timeout = 0s
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/SERVER%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
13
14
15# ----- Main settings -----
16
17acl_smtp_rcpt = accept
18queue_only
19queue_run_in_order
20
21
22# ----- Routers -----
23
24begin routers
25
26client:
27 driver = accept
28 condition = ${if eq {SERVER}{server}{no}{yes}}
29 retry_use_local_part
30 transport = send_to_server
31
32
33# ----- Transports -----
34
35begin transports
36
37send_to_server:
38 driver = smtp
39 allow_localhost
40 hosts = 127.0.0.1
41 port = PORT_D
42 max_rcpt = 0
43
44
45# ----- Retry -----
46
47
48begin retry
49
50* * F,5d,10s
51
52
53# End