Logging: support +outgoing_port on defer lines and per-host error lines
[exim.git] / test / confs / 0431
CommitLineData
afda344b
PH
1# Exim test configuration 0431
2
3AFFIX=
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7primary_hostname = myhost.test.ex
afda344b
PH
8spool_directory = DIR/spool
9log_file_path = DIR/spool/log/%slog
10gecos_pattern = ""
11gecos_name = CALLER_NAME
23f3dc67 12tls_advertise_hosts =
afda344b
PH
13
14# ----- Main settings -----
15
16# This isn't relevant - it's just here to test that -odi
17# can override it.
18
19queue_only
20
21
22# ----- Routers -----
23
24begin routers
25
26r1:
27 driver = accept
28 local_part_prefix = *-
29 transport = t1
30
31r2:
32 driver = accept
33 local_part_suffix = +*
34 transport = t1
35
36r3:
37 driver = accept
38 local_part_prefix = *.
39 transport = t2
40
41
42# ----- Transports -----
43
44begin transports
45
46t1:
47 driver = smtp
48 hosts = 127.0.0.1
49 port = PORT_S
50 allow_localhost
51 AFFIX
52
53t2:
54 driver = appendfile
55 file = DIR/test-mail/$local_part
56 user = CALLER
57 use_bsmtp
58 AFFIX
59
60
61# End