mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-16 20:05:14 +02:00
Update info comments in all plugins
This commit is contained in:
parent
00e142e4f7
commit
b7dc9f8867
19 changed files with 151 additions and 30 deletions
17
addon/ldapauth/README
Normal file
17
addon/ldapauth/README
Normal file
|
@ -0,0 +1,17 @@
|
|||
Authenticate a user against an LDAP directory
|
||||
Useful for Windows Active Directory and other LDAP-based organisations
|
||||
to maintain a single password across the organisation.
|
||||
|
||||
Optionally authenticates only if a member of a given group in the directory.
|
||||
|
||||
The person must have registered with Friendika using the normal registration
|
||||
procedures in order to have a Friendika user record, contact, and profile.
|
||||
|
||||
Note when using with Windows Active Directory: you may need to set TLS_CACERT in your site
|
||||
ldap.conf file to the signing cert for your LDAP server.
|
||||
|
||||
The required configuration options for this module may be set in the .htconfig.php file
|
||||
e.g.:
|
||||
|
||||
$a->config['ldapauth']['ldap_server'] = 'host.example.com';
|
||||
...etc.
|
|
@ -1,5 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Name: LDAP Authenticate
|
||||
* Description: Authenticate a user against an LDAP directory
|
||||
* Version: 1.0
|
||||
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
|
||||
*/
|
||||
|
||||
/**
|
||||
* Friendika addon
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue