]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/CasAuthentication/README
some formatting changes to make inblobs work
[quix0rs-gnu-social.git] / plugins / CasAuthentication / README
1 The CAS Authentication plugin allows for StatusNet to handle authentication
2 through CAS (Central Authentication Service).
3
4 Installation
5 ============
6 add "addPlugin('casAuthentication',
7     array('setting'=>'value', 'setting2'=>'value2', ...);"
8 to the bottom of your config.php
9
10 Settings
11 ========
12 provider_name*: a unique name for this authentication provider.
13 authoritative (false): Set to true if CAS's responses are authoritative
14     (if authorative and CAS fails, no other password checking will be done).
15 autoregistration (false): Set to true if users should be automatically created
16     when they attempt to login.
17 email_changeable (true): Are users allowed to change their email address?
18     (true or false)
19 password_changeable*: must be set to false. This plugin does not support changing passwords.
20
21 server*: CAS server to authentication against
22 port (443): Port the CAS server listens on. Almost always 443
23 path (): Path on the server to CAS. Usually blank.
24
25 * required
26 default values are in (parenthesis)
27
28 Example
29 =======
30 addPlugin('casAuthentication', array(
31     'provider_name'=>'Example',
32     'authoritative'=>true,
33     'autoregistration'=>true,
34     'server'=>'sso-cas.univ-rennes1.fr',
35     'port'=>443,
36     'path'=>''
37 ));
38