TLS: Default tls_advertise_hosts to "*". Bug 1709
[exim.git] / test / confs / 3401
CommitLineData
afda344b
PH
1# Exim test configuration 3401
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 =
c8e2fc1e 11log_selector = +smtp_mailauth
afda344b
PH
12
13# ----- Main settings -----
14
15acl_smtp_rcpt = accept
16
17
18# ----- Authentication -----
19
20begin authenticators
21
22login:
23 driver = plaintext
24 public_name = LOGIN
25 client_send = : userx : secret
6f123593 26 client_set_id = userx
afda344b
PH
27
28plain:
29 driver = plaintext
30 public_name = PLAIN
31 client_send = ^userx^secret
32
4730f942
PH
33xlogin:
34 driver = plaintext
35 public_name = XLOGIN
36 client_send = : $auth1 : $auth1+$auth2
6f123593 37 client_set_id = $auth1
4730f942 38
afda344b
PH
39
40# ----- Routers -----
41
42begin routers
43
44try:
45 driver = manualroute
46 route_list = domain.com 127.0.0.1 byname
47 self = send
48 transport = smtp_try
49
50force:
51 driver = manualroute
52 route_list = authdomain.com 127.0.0.1 byname
53 self = send
54 transport = smtp_force
55
56
57# ----- Transports -----
58
59begin transports
60
61smtp_try:
62 driver = smtp
63 hosts_try_auth = *
64 port = PORT_S
65 authenticated_sender = ${if eq{$local_part}{forcesender}{force@x.y.z}fail}
66
67smtp_force:
68 driver = smtp
69 hosts_require_auth = *
70 port = PORT_S
71
72
73# ----- Retry -----
74
75
76begin retry
77
78* auth_failed
79* * F,1h,10m
80
81# End