Mercurial > prosody-wiki
comparison mod_register_redirect.wiki @ 215:062ee740d924
mod_register_redirect: created wiki page.
author | maranda3985@gmail.com |
---|---|
date | Thu, 22 Sep 2011 16:57:00 +0000 |
parents | |
children | 1203d8b8a8a2 |
comparison
equal
deleted
inserted
replaced
214:a928ab41c909 | 215:062ee740d924 |
---|---|
1 #summary XEP-077 IBR Registration Redirect. | |
2 #labels Stage-Stable | |
3 | |
4 = Introduction = | |
5 | |
6 Registration Redirect as explained in the [http://xmpp.org/extensions/xep-0077.html#redirect IBR XEP]. | |
7 | |
8 = Details = | |
9 | |
10 This module shows instructions on how to register to the server, should it be necessary to perform it through other means Out-Of-Band or not, and also let's registrations origining from ip addresses in the whitelist to go through normally. | |
11 | |
12 = Usage = | |
13 | |
14 Copy the module file into your Prosody modules directory. | |
15 | |
16 Then set the following options into your config file: | |
17 {{{ | |
18 registration_whitelist = { "*your whitelisted web server ip address*" } | |
19 registrarion_url = "*your web registration page url*" | |
20 registration_text = "Your custom instructions banner here" | |
21 registration_oob = true (default) or false, in the case there's no applicable OOB method (e.g. the server admins needs to be contacted by phone) | |
22 }}} | |
23 | |
24 To not employ any whitelisting (i.e. registration is handled externally). | |
25 {{{ | |
26 no_registration_whitelist = true | |
27 }}} | |
28 | |
29 = Compatibility = | |
30 | |
31 * 0.8 works | |
32 * 0.7 might not work | |
33 * 0.6 won't work | |
34 * 0.5 won't work |