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.
3 THIS PLUGIN IS FOR TESTING PURPOSES ONLY
7 add "addPlugin('reverseUsernameAuthentication', array('setting'=>'value', 'setting2'=>'value2', ...);" to the bottom of your config.php
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.
17 default values are in (parenthesis)
21 addPlugin('reverseUsernameAuthentication', array(
22 'provider_name'=>'Example',
23 'password_changeable'=>false,
24 'authoritative'=>true,
25 'autoregistration'=>true