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