DokuWiki

It's better when it's simple

User Tools

Site Tools


auth:ldap_lotus

This is an old revision of the document!


LDAP Auth Plugin: Lotus Domino (Notes) Examples

Below are example configurations for use with the LDAP backend and the Lotus Domino server.

Domino < 7.0

$conf['auth']['ldap']['server']      = 'localhost';
$conf['auth']['ldap']['usertree']    = 'O=YourNotesOrganization/C=US';
$conf['auth']['ldap']['grouptree']   = 'O=YourNotesOrganization/C=US';
$conf['auth']['ldap']['userfilter']  = '(&(uid=%{user})(objectClass=dominoPerson))';
$conf['auth']['ldap']['groupfilter'] = '(&(objectClass=dominoGroup)(member=CN=%{user}))';
 
//Note: It is not necessary to populate both 'grouptree' and 'groupfilter'.
//You may have better results only populating one of these and commenting out the other

Domino >= 7.0

This allows you to login via the CN (Domino 'User Name') or the uid (Domino 'short name').

$conf['auth']['ldap']['server'] = 'ldap://myldap.mydomain.edu';
$conf['auth']['ldap']['port'] = '389';
$conf['auth']['ldap']['usertree']    = 'C=US';
$conf['auth']['ldap']['grouptree']   = 'RootDSE';
$conf['auth']['ldap']['userfilter']  = '(&(|(CN=%{user})(uid=%{user}))(objectClass=dominoPerson))';
$conf['auth']['ldap']['groupfilter'] = '(&(objectClass=dominoGroup)(member=CN=%{cn}*))';
auth/ldap_lotus.1368052958.txt.gz · Last modified: 2013-05-09 00:42 by 203.12.195.65

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki