Add caseless option to verify=not_blind. Bug 2356
[exim.git] / test / confs / 4056
CommitLineData
ee8b8090
JH
1# test config 4056
2# Early-pipe, AUTH (no TLS!)
3
4keep_environment = PATH
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7spool_directory = DIR/spool
8
9.ifdef SERVER
10log_file_path = DIR/spool/log/SERVER%slog
11.else
12log_file_path = DIR/spool/log/%slog
13.endif
14
15gecos_pattern = ""
16gecos_name = CALLER_NAME
17dns_cname_loops = 9
18chunking_advertise_hosts =
19tls_advertise_hosts =
20
21pipelining_connect_advertise_hosts = *
22auth_advertise_hosts = *
23log_selector = +pipelining
24queue_only
25
26acl_smtp_rcpt = accept
27
28#
29begin routers
30
31server:
32 driver = redirect
33 condition = ${if eq {SERVER}{server}}
34 data = :blackhole:
35
36client:
37 driver = manualroute
38 route_data = 127.0.0.1::PORT_D
39 self = send
40 transport = smtp
41
42#
43begin transports
44
45smtp:
46 driver = smtp
47 hosts_pipe_connect = *
48 hosts_require_auth = *
49
50#
51begin authenticators
52
53plain:
54 driver = plaintext
55 public_name = PLAIN
56
57 server_condition = "\
58 ${if and {{eq{$auth2}{userx}}{eq{$auth3}{secret}}}{yes}{no}}"
59 server_set_id = $auth2
60
61 client_send = ^userx^secret
62