CRL addition returns count of CRLs added
[exim.git] / test / confs / 0230
CommitLineData
afda344b
PH
1# Exim test configuration 0230
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# ----- Main settings -----
15
16domainlist local_domains = test.ex : *.test.ex
17acl_smtp_rcpt = check_recipient
18log_selector = \
19 +incoming_port \
20 +incoming_interface \
21 +smtp_connection
22queue_only
23queue_run_in_order
24
25
26# ----- ACL -----
27
28begin acl
29
30check_recipient:
31 accept hosts = :
32 accept domains = +local_domains
33 deny message = relay not permitted
34
35
36# ----- Routers -----
37
38begin routers
39
40fail_remote_domains:
41 driver = redirect
42 domains = ! +local_domains
43 data = :fail: unrouteable mail domain "$domain"
44
45server:
46 driver = accept
47 retry_use_local_part
48 transport = local_delivery
49
50
51# ----- Transports -----
52
53begin transports
54
55local_delivery:
56 driver = appendfile
57 file = DIR/test-mail/$local_part
58 headers_add = Port: $sender_host_port
59 user = CALLER
60
61
62# ----- Retry -----
63
64begin retry
65
66* * F,5d,10s
67
68# End