Add acl_not_smtp_start ACL (mostly Johannes Berg's patch).
[exim.git] / test / confs / 0535
CommitLineData
45b91596
PH
1# Exim test configuration 0535
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_not_smtp_start = one
15trusted_users = CALLER
16
17
18# ----- ACLs -----
19
20begin ACL
21
22one:
23 warn senders = ^nofix@
24 control = suppress_local_fixups
25 add_header = X-Added: $recipients
26
27# ----- Routers -----
28
29begin routers
30
31r1:
32 driver = accept
33 transport = t1
34
35
36# ----- Transports -----
37
38begin transports
39
40t1:
41 driver = appendfile
42 user = CALLER
43 file = DIR/test-mail/$local_part
44
45
46# End