Apply Jakob Hirsch's patch for arbitrary ACL variable names, tidied up
[exim.git] / test / confs / 0233
CommitLineData
afda344b
PH
1# Exim test configuration 0233
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
6rfc1413_query_timeout = 0s
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11
12# ----- Main settings -----
13
14acl_smtp_rcpt = rcpt
15
16freeze_tell = me
17system_filter = DIR/aux-fixed/TESTNUM.filter
18system_filter_reply_transport = address_reply
19
20
21# ----- ACL -----
22
23begin acl
24
25rcpt:
6a3f1455
PH
26 accept local_parts = usery
27 control = freeze
28 accept control = freeze/no_tell
afda344b
PH
29
30
31# ----- Routers -----
32
33begin routers
34
35all:
36 driver = accept
37 retry_use_local_part
38 transport = local_delivery
39
40
41# ----- Transports -----
42
43begin transports
44
45local_delivery:
46 driver = appendfile
47 file = DIR/test-mail/$local_part
48 user = CALLER
49
50address_reply:
51 driver = autoreply
52 user = CALLER
53
54
55# ----- Retry -----
56
57
58begin retry
59
60* * F,5d,10s
61
62
63# End