Logging: support +outgoing_port on defer lines and per-host error lines
[exim.git] / test / confs / 5410
CommitLineData
99400968 1# Exim test configuration 5410
4ed8d31a
JH
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
4ed8d31a
JH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13log_selector = +smtp_confirmation
14tls_advertise_hosts = *
15tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
16
17domainlist local_domains = test.ex : *.test.ex
18
19acl_smtp_rcpt = ${if eq {SERVER}{server}{queue}{cutthrough}}
20
21# ----- ACLs -------
22
23begin acl
24
25cutthrough:
26 accept control = cutthrough_delivery
27 verify = recipient
28
29queue:
30 accept control = queue_only
31
32# ----- Routers -----
33
34begin routers
35
36all:
37 driver = manualroute
38 domains = ! +local_domains
39 route_list = * 127.0.0.1
40 self = send
41 address_data = $local_part
42 transport = smtp
43 no_more
44
45
46# ----- Transports -----
47
48begin transports
49
50smtp:
51 driver = smtp
52 interface = HOSTIPV4
53 port = PORT_D
99400968
JH
54 hosts_avoid_tls = ${if eq {$address_data}{usery}{*}{:}}
55 hosts_verify_avoid_tls = ${if eq {$address_data}{userz}{*}{:}}
610ff438 56 tls_try_verify_hosts = :
4ed8d31a
JH
57
58
59# End