diff options
author | Evan Prodromou <evan@status.net> | 2009-12-23 10:31:27 -0800 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-12-23 10:31:27 -0800 |
commit | 3262930ed46936140244c5385e4b172632d2dd44 (patch) | |
tree | b70e2718491ffb44205bfdd5f5adf0f07376001a /plugins/CasAuthentication/README | |
parent | 6b5a334c0e0b40cbf3ed0bfd372e171eabf30f5f (diff) | |
parent | eab6d1c95450cf9b209a0961ac325f2f9ce87d80 (diff) |
Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x
Diffstat (limited to 'plugins/CasAuthentication/README')
-rw-r--r-- | plugins/CasAuthentication/README | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/plugins/CasAuthentication/README b/plugins/CasAuthentication/README new file mode 100644 index 000000000..2ee54dc05 --- /dev/null +++ b/plugins/CasAuthentication/README @@ -0,0 +1,38 @@ +The CAS Authentication plugin allows for StatusNet to handle authentication +through CAS (Central Authentication Service). + +Installation +============ +add "addPlugin('casAuthentication', + array('setting'=>'value', 'setting2'=>'value2', ...);" +to the bottom of your config.php + +Settings +======== +provider_name*: a unique name for this authentication provider. +authoritative (false): Set to true if CAS's responses are authoritative + (if authorative and CAS fails, no other password checking will be done). +autoregistration (false): Set to true if users should be automatically created + when they attempt to login. +email_changeable (true): Are users allowed to change their email address? + (true or false) +password_changeable*: must be set to false. This plugin does not support changing passwords. + +server*: CAS server to authentication against +port (443): Port the CAS server listens on. Almost always 443 +path (): Path on the server to CAS. Usually blank. + +* required +default values are in (parenthesis) + +Example +======= +addPlugin('casAuthentication', array( + 'provider_name'=>'Example', + 'authoritative'=>true, + 'autoregistration'=>true, + 'server'=>'sso-cas.univ-rennes1.fr', + 'port'=>443, + 'path'=>'' +)); + |