1e8f63d85f5888dd4c2fd84969ae5e5d5c4db79d
[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 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10
11 # ----- Main settings -----
12
13 acl_not_smtp_start = one
14 trusted_users = CALLER
15
16
17 # ----- ACLs -----
18
19 begin ACL
20
21 one:
22   warn senders = ^nofix@
23        control = suppress_local_fixups
24        add_header = X-Added: $recipients
25
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