• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

bin/H03-Jan-2021-492331

contrib/H03-Jan-2021-9,6324,964

data/H03-May-2022-6,2275,850

inc/Module/H03-Jan-2021-3,1292,345

lib/H03-Jan-2021-19,86110,360

t/H03-Jan-2021-2,9531,988

CREDITSH A D26-Dec-20201.4 KiB3933

ChangesH A D03-Jan-202126.6 KiB775616

INSTALLH A D26-Dec-20201.3 KiB4434

MANIFESTH A D03-Jan-20213.4 KiB163162

MANIFEST.SKIPH A D26-Dec-2020913 6655

META.jsonH A D03-Jan-20212.1 KiB8483

Makefile.PLH A D26-Dec-20201.9 KiB8068

READMEH A D26-Dec-20202.1 KiB6242

SIGNATUREH A D03-Jan-202115.7 KiB189182

TODOH A D26-Dec-20201.8 KiB6448

install-nomakeH A D26-Dec-2020863 3816

test.cfgH A D26-Dec-20201.3 KiB4029

README

1perl-ldap - A Client interface to LDAP servers
2
3Copyright (c) 1997-2004 Graham Barr. All rights reserved.
4This package is free software; you can redistribute it and/or
5modify it under the same terms as Perl itself.
6
7*******************************************************************************
8This code should be considered very much as work-in-progress.
9Any part of this release could be subject to change.
10
11The development of the distribution is discussed on a mailing list at
12
13  perl-ldap@perl.org
14
15To subscribe send an empty email to
16
17  perl-ldap-subscribe@perl.org
18
19*******************************************************************************
20
21For the latest information see http://ldap.perl.org/
22
23QUICK START GUIDE:
24
25    perl-ldap uses the following modules/distributions.
26
27	MIME::Base64      - required, core module since Perl 5.7.3
28	Convert::ASN1     - required
29	IO::Socket::SSL   - optional, for LDAPS / start_tls support
30	IO::Socket::INET6 - optional, for IPv6 support
31	IO::Socket::IP    - optional, for IPv6 support
32	Authen::SASL      - optional, for SASL authentication
33	Digest::MD5       - optional, for SASL DIGEST-MD5 mechanism
34	GSSAPI            - optional, for SASL GSSAPI mechanism
35	URI::ldap         - optional, for URL parsing
36	XML::SAX::Writer  - optional, for Net::LDAP::DSML
37	Time::Local       - optional, for Net::LDAP::Util's time conversion functions
38
39    If IO::Socket::IP 0.20 or higher is installed, it is dynamically (at runtime)
40    preferred over IO::Socket::INET6.
41
42    First ensure the above modules/distributions are installed then
43    build/test/install Net::LDAP by doing
44
45	perl Makefile.PL
46	make
47	make test
48	make install
49
50    Several modules in the distribution contain documentation. Once installed
51    you can use the 'perldoc Net::LDAP' command to obtain the documentation.
52    This documentation will contain pointers to the other modules.
53
54
55*******************************************************************************
56NOTE: Everything that has been deprecated will be removed when V1.00 is
57released, but who knows when that will be.
58*******************************************************************************
59
60Share and Enjoy!
61
62