5978b7fa01514deda64328c0d3c9faea0a82db96
[exim.git] / test / confs / 5401
1 # Exim test configuration 5401
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 domainlist local_domains = test.ex : *.test.ex
14
15 acl_smtp_rcpt = acl_rcpt
16
17 # ----- ACLs -------
18
19 begin acl
20
21 acl_rcpt:
22     accept      control = cutthrough_delivery
23                 verify = recipient
24
25
26 # ----- Routers -----
27
28 begin routers
29
30 all:
31   driver = manualroute
32   domains = ! +local_domains
33   route_list = * 127.0.0.1
34   self = send
35   transport = smtp
36   no_more
37
38
39 # ----- Transports -----
40
41 begin transports
42
43 smtp:
44   driver = smtp
45   interface = HOSTIPV4
46   port = PORT_S
47
48
49 # End