Logging: support +outgoing_port on defer lines and per-host error lines
[exim.git] / test / confs / 3405
CommitLineData
afda344b
PH
1# Exim test configuration 3405
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
23f3dc67 10tls_advertise_hosts =
afda344b
PH
11
12# ----- Main settings -----
13
14
15# ----- Authentication -----
16
17
18begin authenticators
19
20plain:
21 driver = plaintext
22 public_name = PLAIN
23 client_send = ^userx^secret
24
25
26# ----- Routers -----
27
28begin routers
29
30all:
31 driver = manualroute
32 headers_add = X-AID: >$authenticated_id<
33 route_list = * 127.0.0.1 byname
34 self = send
35 transport = smtp
36 no_more
37
38
39# ----- Transports -----
40
41begin transports
42
43smtp:
44 driver = smtp
45 headers_add = X-TAID: >$authenticated_id<
46 hosts_try_auth = *
47 port = PORT_S
48
49# End