]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/ReverseUsernameAuthentication/README
Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing
[quix0rs-gnu-social.git] / plugins / ReverseUsernameAuthentication / README
1 The Reverse Username Authentication plugin allows for StatusNet to handle authentication by checking if the provided password is the same as the reverse of the username.
2
3 THIS PLUGIN IS FOR TESTING PURPOSES ONLY
4
5 Installation
6 ============
7 add "addPlugin('reverseUsernameAuthentication', array('setting'=>'value', 'setting2'=>'value2', ...);" to the bottom of your config.php
8
9 Settings
10 ========
11 provider_name*: a unique name for this authentication provider.
12 password_changeable*: must be set to false. This plugin does not support changing passwords.
13 authoritative (false): Set to true if this plugin's responses are authoritative (meaning if this fails, do check any other plugins or the internal password database).
14 autoregistration (false): Set to true if users should be automatically created when they attempt to login.
15
16 * required
17 default values are in (parenthesis)
18
19 Example
20 =======
21 addPlugin('reverseUsernameAuthentication', array(
22     'provider_name'=>'Example',
23     'password_changeable'=>false,
24     'authoritative'=>true,
25     'autoregistration'=>true
26 ));