CRL addition returns count of CRLs added
[exim.git] / test / confs / 0473
CommitLineData
afda344b
PH
1# Exim test configuration 0473
2
3USE_SENDER = ,use_sender
4ACL_RCPT = acl_rcpt
5
6exim_path = EXIM_PATH
7host_lookup_order = bydns
8rfc1413_query_timeout = 0s
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
13
14# ----- Main settings -----
15
16acl_smtp_rcpt = ACL_RCPT
17callout_random_local_part = $primary_hostname--testing
18trusted_users = CALLER
19
20
21# ----- ACL -----
22
23begin acl
24
25acl_rcpt:
26 accept verify = recipient/callout=1sUSE_SENDER
27
28acl_rcpt_sender:
29 accept verify = sender/callout=1s,connect=2s
30
31
32# ----- Routers -----
33
34begin routers
35
36callout:
37 driver = manualroute
38 transport = smtp
39 route_data = 127.0.0.1
40 self = send
41
42
43# ----- Transports -----
44
45begin transports
46
47smtp:
48 driver = smtp
49 port = PORT_S
50
51# End