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

..03-May-2022-

lib/Net/LDAP/H26-Jun-2010-464202

t/H26-Jun-2010-9868

ChangesH A D26-Jun-2010685 2618

MANIFESTH A D28-Apr-201097 98

Makefile.PLH A D26-Jun-2010552 1816

READMEH A D28-Apr-20101.3 KiB6339

README

1Net-LDAP-AutoDNs
2
3Automatically make some default decisions some LDAP DNs and scopes.
4
5Currently supported methodes are environmental and hostname.
6
7use Net::LDAP::AutoDNs;
8
9my $obj = Net::LDAP::AutoDNs->new();
10
11print $obj->{users}."\n";
12print $obj->{usersScope}."\n";
13print $obj->{dns}."\n";
14print $obj->{dnsScope}."\n";
15print $obj->{groups}."\n";
16print $obj->{groupsScope}."\n";
17print $obj->{home}."\n";
18print $obj->{homeScope}."\n";
19
20INSTALLATION
21
22To install this module, run the following commands:
23
24	perl Makefile.PL
25	make
26	make test
27	make install
28
29/DEV/LDAP
30
31The FreeBSD kernel module for this can be found at
32http://eesdp.org/eesdp/ldap-kmod.html .
33
34SUPPORT AND DOCUMENTATION
35
36After installing, you can find documentation for this module with the
37perldoc command.
38
39    perldoc Net::LDAP::AutoDNs
40
41You can also look for information at:
42
43    RT, CPAN's request tracker
44        http://rt.cpan.org/NoAuth/Bugs.html?Dist=Net-LDAP-AutoDNs
45
46    AnnoCPAN, Annotated CPAN documentation
47        http://annocpan.org/dist/Net-LDAP-AutoDNs
48
49    CPAN Ratings
50        http://cpanratings.perl.org/d/Net-LDAP-AutoDNs
51
52    Search CPAN
53        http://search.cpan.org/dist/Net-LDAP-AutoDNs
54
55
56COPYRIGHT AND LICENCE
57
58Copyright (C) 2008 Zane C. Bowers
59
60This program is free software; you can redistribute it and/or modify it
61under the same terms as Perl itself.
62
63