ca5ef4326d79bd76cf4cfd44d18bea947a191f2d
[exim.git] / test / confs / 0425
1 # Exim test configuration 0425
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 spool_directory = DIR/spool
6 log_file_path = DIR/spool/log/%slog
7 gecos_pattern = ""
8 gecos_name = CALLER_NAME
9
10 # ----- Main settings -----
11
12 primary_hostname = mail.test.ex
13 qualify_domain = test.ex
14
15 acl_smtp_rcpt = a1
16
17
18 # ----- ACLs -----
19
20 begin acl
21
22 a1:
23   warn  !verify = recipient
24   warn  verify = sender
25
26   accept
27
28
29 # ----- Routers -----
30
31 begin routers
32
33 r1:
34   driver = accept
35   local_parts = ok
36   transport = t1
37
38
39 # ----- Transports -----
40
41 begin transports
42
43 t1:
44   driver = smtp
45
46
47 # End