Fix the variables set by gsasl authenticator
[exim.git] / test / confs / 3820
1 # Exim test configuration 3820
2
3 SERVER=
4
5 .include DIR/aux-var/std_conf_prefix
6
7 primary_hostname = myhost.test.ex
8
9 # ----- Main settings -----
10
11
12 # ----- Authentication -----
13
14 begin authenticators
15
16 sasl1:
17 driver = gsasl
18 public_name = ANONYMOUS
19 server_set_id = $auth1
20 server_condition = true
21
22 sasl2:
23 driver = gsasl
24 public_name = PLAIN
25 server_set_id = $auth1
26 server_condition = false
27
28 sasl3:
29 driver = gsasl
30 public_name = SCRAM-SHA-1
31
32 # will need to give library salt, stored-key, server-key, itercount
33 #
34 # sigh
35 # gsasl takes props: GSASL_SCRAM_ITER, GSASL_SCRAM_SALT. It _might_ take
36 # a GSASL_SCRAM_SALTED_PASSWORD - but that is only documented for client mode.
37
38 server_scram_iter = 4096
39 # unclear if the salt is given in binary or base64 to the library
40 server_scram_salt = QSXCR+Q6sek8bf92
41 server_password = pencil
42
43 server_condition = true
44 server_set_id = $auth1
45
46
47 # End