Logging: support +outgoing_port on defer lines and per-host error lines
[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 tls_advertise_hosts =
11
12 # ----- Main settings -----
13
14 domainlist local_domains = test.ex : *.test.ex
15
16 acl_smtp_rcpt = acl_rcpt
17
18 # ----- ACLs -------
19
20 begin acl
21
22 acl_rcpt:
23 accept control = cutthrough_delivery
24 verify = recipient
25
26
27 # ----- Routers -----
28
29 begin routers
30
31 all:
32 driver = manualroute
33 domains = ! +local_domains
34 route_list = * 127.0.0.1
35 self = send
36 transport = smtp
37 no_more
38
39
40 # ----- Transports -----
41
42 begin transports
43
44 smtp:
45 driver = smtp
46 interface = HOSTIPV4
47 port = PORT_S
48
49
50 # End