Add acl_not_smtp_start ACL (mostly Johannes Berg's patch).
[exim.git] / test / confs / 0535
1 # Exim test configuration 0535
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 rfc1413_query_timeout = 0s
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11
12 # ----- Main settings -----
13
14 acl_not_smtp_start = one
15 trusted_users = CALLER
16
17
18 # ----- ACLs -----
19
20 begin ACL
21
22 one:
23 warn senders = ^nofix@
24 control = suppress_local_fixups
25 add_header = X-Added: $recipients
26
27 # ----- Routers -----
28
29 begin routers
30
31 r1:
32 driver = accept
33 transport = t1
34
35
36 # ----- Transports -----
37
38 begin transports
39
40 t1:
41 driver = appendfile
42 user = CALLER
43 file = DIR/test-mail/$local_part
44
45
46 # End