Mercurial > prosody-wiki
annotate mod_register_web.wiki @ 420:eb372e6bb82f
mod_auth_ldap: Document the ldap_mode option
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 21 Jan 2014 20:26:30 +0100 |
parents | 720b8a84ecf9 |
children |
rev | line source |
---|---|
310 | 1 #summary A web interface to register user accounts |
2 #labels Stage-Alpha | |
3 | |
4 = Introduction = | |
5 | |
6 There are various reasons to prefer web registration instead of "in-band" account registration over XMPP. For example the lack of CAPTCHA support in clients and servers. | |
7 | |
8 = Details = | |
9 | |
10 mod_register_web has Prosody serve a web page where users can sign up for an account. It implements reCaptcha to prevent automated sign-ups (from bots, etc.). | |
11 | |
12 = Configuration = | |
13 | |
14 The module is served on Prosody's default HTTP ports at the path `/register_web`. More details on configuring HTTP modules in Prosody can be found in our [http://prosody.im/doc/http HTTP documentation]. | |
15 | |
16 To configure the CAPTCHA you need to supply a 'captcha_options' option: | |
17 | |
18 {{{ | |
19 captcha_options = { | |
20 recaptcha_private_key = "12345"; | |
21 recaptcha_public_key = "78901"; | |
22 } | |
23 }}} | |
24 | |
25 The keys for reCaptcha are available in your reCaptcha account, visit [http://recaptcha.net/ recaptcha.net] for more info. | |
26 | |
415
720b8a84ecf9
add note about simple built-in captcha
Kim Alvefur <zash@zash.se>
parents:
311
diff
changeset
|
27 If no reCaptcha options are set, a simple built in captcha is used. |
720b8a84ecf9
add note about simple built-in captcha
Kim Alvefur <zash@zash.se>
parents:
311
diff
changeset
|
28 |
310 | 29 = Compatibility = |
30 || 0.9 || Works || | |
31 || 0.8 || Doesn't work || | |
32 | |
33 = Todo = | |
34 | |
35 Lots. The module is very basic at the moment. In particular I would like to see: | |
36 | |
37 * Customisation (CSS and/or HTML) | |
38 * Different CAPTCHA implementation support | |
39 * Collection of additional data, such as email address | |
40 * The module kept simple! |