]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/ReverseUsernameAuthentication/README
Localisation updates from http://translatewiki.net.
[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*: This is a identifier designated to the connection.
12     It's how StatusNet will refer to the authentication source.
13     For the most part, any name can be used, so long as each authentication source has a different identifier.
14     In most cases there will be only one authentication source used.
15 password_changeable*: must be set to false. This plugin does not support changing passwords.
16 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).
17 autoregistration (false): Set to true if users should be automatically created when they attempt to login.
18
19 * required
20 default values are in (parenthesis)
21
22 Example
23 =======
24 addPlugin('reverseUsernameAuthentication', array(
25     'provider_name'=>'Example',
26     'password_changeable'=>false,
27     'authoritative'=>true,
28     'autoregistration'=>true
29 ));