Logging: support +outgoing_port on defer lines and per-host error lines
[exim.git] / test / confs / 0413
CommitLineData
afda344b
PH
1# Exim test configuration 0413
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
afda344b
PH
5spool_directory = DIR/spool
6log_file_path = DIR/spool/log/%slog
7gecos_pattern = ""
8gecos_name = CALLER_NAME
23f3dc67 9tls_advertise_hosts =
afda344b
PH
10
11# ----- Main settings -----
12
13primary_hostname = mail.test.ex
14qualify_domain = test.ex
15
16acl_smtp_mail = mail
17
18
19# ----- ACL -----
20
21begin acl
22
23mail:
24 accept verify = sender/callout
25
26
27# ----- Routers -----
28
29begin routers
30
31r1:
32 local_parts = r1
33 driver = accept
34 transport = t1
35
36r2:
37 local_parts = r2
38 driver = manualroute
39 route_list = * HOSTIPV4
40 self = send
41 transport = t1
42
43r3:
44 local_parts = r3
45 driver = manualroute
46 route_list = * HOSTIPV4
47 self = send
48 transport = t2
49
50# ----- Transports -----
51
52begin transports
53
54t1:
55 driver = smtp
56 hosts = 127.0.0.1
57 allow_localhost
58 port = PORT_S
59
60t2:
61 driver = smtp
62 hosts = 127.0.0.1
63 hosts_override
64 allow_localhost
65 port = PORT_S
66
67
68# End