update to pre-4.87 master
[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 tls_advertise_hosts =
10
11 # ----- Main settings -----
12
13 primary_hostname = mail.test.ex
14 qualify_domain = test.ex
15
16 acl_smtp_rcpt = a1
17
18
19 # ----- ACLs -----
20
21 begin acl
22
23 a1:
24 warn !verify = recipient
25 warn verify = sender
26
27 accept
28
29
30 # ----- Routers -----
31
32 begin routers
33
34 r1:
35 driver = accept
36 local_parts = ok
37 transport = t1
38
39
40 # ----- Transports -----
41
42 begin transports
43
44 t1:
45 driver = smtp
46
47
48 # End