Truncate delay when peer closes connection. Bug 348
[exim.git] / test / confs / 3455
CommitLineData
6c512171
PH
1# Exim test configuration 3455
2
3HOSTS_AVOID_TLS=
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7primary_hostname = myhost.test.ex
6c512171
PH
8spool_directory = DIR/spool
9log_file_path = DIR/spool/log/%slog
10gecos_pattern = ""
11gecos_name = CALLER_NAME
12
13# ----- Main settings -----
14
15acl_smtp_rcpt = accept
16
17domainlist local_domains = test.ex
18
19log_selector = +smtp_no_mail
20
21queue_only = true
22
23tls_advertise_hosts = *
24tls_certificate = DIR/aux-fixed/cert1
25tls_privatekey = DIR/aux-fixed/cert1
26
27
28# ----- Authenticators -----
29
30begin authenticators
31
32plain:
33 driver = plaintext
34 public_name = PLAIN
35 server_condition = "\
36 ${if and {{eq{$2}{userx}}{eq{$3}{secret1}}}{yes}{no}}"
37 server_set_id = $2
8359d7da 38 client_condition = ${if !eq {$tls_out_cipher}{}}
6c512171
PH
39 client_send = ^userx^secret1
40
41login:
42 driver = plaintext
43 public_name = LOGIN
44 server_prompts = User Name : Password
45 server_condition = "\
46 ${if and {{eq{$auth1}{usery}}{eq{$auth2}{secret2}}}{yes}{no}}"
47 server_set_id = $auth1
48 client_send = : usery : secret2
49
50
51# ----- Routers -----
52
53begin routers
54
55r1:
56 driver = accept
57 transport = t1
58
59
60# ----- Transports -----
61
62begin transports
63
64t1:
65 driver = smtp
66 hosts = 127.0.0.1
67 port = PORT_D
68 hosts_avoid_tls = HOSTS_AVOID_TLS
69 hosts_require_auth = *
70 allow_localhost
71
72
73# End