Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

directoryassistant(1) [debian man page]

directoryassistant(1)						directoryassistant					     directoryassistant(1)

NAME
directoryassistant - user friendly ldap addressbook frontend DESCRIPTION
Directory Assistant is a small application for managing a LDAP address book. The focus is to create a very easy to use program, with only the few but necessary features. The target is novice users that need to keep their addresses in an LDAP server. FILES
Configuration is done by config file. Since novice users anyway don't know how to configure LDAP access, I decided to remove that from the GUI. The config file should be at /etc/directoryassistant or ~/.directoryassistant and should have the format: [My Ldap Server] ldapurl = ldap://your.ldap.server.com/ base_dn = ou=department,ou=People,o=someorg extended options are: bind_dn = cn=someaccount,o=someorg bind_password = yourpassword add_dn = ou=myunit,ou=department,ou=People,o=someorg ldapversion = 3 startup_search = AUTHOR
Directoryassistant is written by Olivier Sessink directoryassistant 10-12-2005 directoryassistant(1)

Check Out this Related Man Page

Net::LDAP::Extension::WhoAmI(3) 			User Contributed Perl Documentation			   Net::LDAP::Extension::WhoAmI(3)

NAME
Net::LDAP::Extension::WhoAmI - LDAP "Who am I?" Operation SYNOPSIS
use Net::LDAP; use Net::LDAP::Extension::WhoAmI; $ldap = Net::LDAP->new( "ldap.mydomain.eg" ); $ldap->bind('cn=Joe User,cn=People,dc=example,dc=com", password => 'secret'); $mesg = $ldap->who_am_i(); die "error: ", $mesg->code(), ": ", $mesg->error() if ($mesg->code()); print "you are bound with authzId ", $mesg->response(), " "; DESCRIPTION
"Net::LDAP::Extension::WhoAmI" implements the "Who am I?" extended LDAPv3 operation as described in RFC 4532. It implements no object by itself but extends the Net::LDAP object by another method: METHODS
who_am_i Obtain the authorization identity which the server has associated with the user or application entity. SEE ALSO
Net::LDAP, Net::LDAP::Extension AUTHOR
Norbert Klasen <norbert.klasen@avinci.de>, Please report any bugs, or post any suggestions, to the perl-ldap mailing list <perl-ldap@perl.org> COPYRIGHT
Copyright (c) 2002-2004 Graham Barr. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.18.2 2013-07-21 Net::LDAP::Extension::WhoAmI(3)
Man Page