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