Update a few misc docs

This commit is contained in:
Kurt Zeilenga 2000-06-07 06:33:59 +00:00
parent 6ad1c45bd3
commit 9a8cc65162
4 changed files with 48 additions and 43 deletions

View file

@ -1,24 +1,32 @@
A N N O U N C E M E N T A N N O U N C E M E N T
OpenLDAP 2.0-alpha OpenLDAP 2.0-Alpha
The OpenLDAP Project is pleased to announce the availability The OpenLDAP Project is pleased to announce the availability
of OpenLDAP release 2.0-alpha, a suite of the Lightweight Weight of OpenLDAP release 2.0-Alpha, a suite of the Lightweight Weight
Directory Protocol servers, clients, utilities, and development tools. Directory Protocol servers, clients, utilities, and development tools.
This release is for REFERENCE PURPOSES ONLY.
This release is NOT FOR GENERAL USE.
This release is NOT feature complete nor well tested.
This release contains the following major enhancements: This release contains the following major enhancements:
* LDAPv3 support * LDAPv3 support
- RFC2251 support + RFC2251-2256
- named referrals + named referrals
- named aliases + DNS SRV location
* SASL bind support * Enhanced Access Control System
* SASL support
* TLS/SSL support * TLS/SSL support
* IPv6 support
* Updated C API * Updated C API
* Additional SLAPD backends: * Additional SLAPD backends:
- LDAP backend + DNS SRV referral backend
- Perl backend + LDAP backend
- TCL backend + Perl programmable backend
+ SQL programmable backend
+ TCL programmable backend
This release includes the following major components: This release includes the following major components:
@ -46,13 +54,14 @@ ACKNOWLEDGEMENTS
the Internet to coordinate their activities. The project is the Internet to coordinate their activities. The project is
managed by the OpenLDAP Foundation. managed by the OpenLDAP Foundation.
OpenLDAP software is derived from University of Michigan OpenLDAP LDAP implementation is derived from University of
LDAP release 3.3. Michigan LDAP release 3.3.
AVAILABILITY AVAILABILITY
This software is available under the OpenLDAP Public License. This software is available under the OpenLDAP Public License,
an unrestrictive, "free," OSS-approved open source license.
For download information is available at: For download information is available at:
http://www.OpenLDAP.org/software/download/ http://www.OpenLDAP.org/software/download/
@ -60,23 +69,23 @@ AVAILABILITY
SUPPORT SUPPORT
OpenLDAP software is user supported. OpenLDAP software is user supported
http://www.openldap.org/support/ http://www.openldap.org/support/
To report bugs, please use project's Issue Tracking System:
http://www.openldap.org/its/
The project maintains a FAQ which you may find useful: The project maintains a FAQ which you may find useful:
http://www.openldap.org/fag/ http://www.openldap.org/faq/
In addition, there are also a number of discussion lists In addition, there are also a number of discussion lists
related OpenLDAP. A list of mailing lists is available at: related OpenLDAP. A list of mailing lists is available at:
http://www.OpenLDAP.org/lists/ http://www.OpenLDAP.org/lists/
To report bugs, please use project's Issue Tracking System:
http://www.openldap.org/its/
The OpenLDAP home page containing lots of interesting information The OpenLDAP home page containing lots of interesting information
and online documentation is available at this URL: and online documentation is available at this URL:
@ -86,8 +95,7 @@ SUPPORT
SUPPORTED PLATFORMS SUPPORTED PLATFORMS
This release has been ported to many UNIX (and UNIX-like) platforms This release has been ported to many UNIX (and UNIX-like) platforms
including AIX, Digital UNIX (OSF/1), FreeBSD, HP-UX, IRIX, Linux, including FreeBSD, Linux, NetBSD, OpenBSD and most commericial
NetBSD, NexTSTEP, OpenBSD, SCO, Solaris, SunOS, and Ultrix. UNIX systems. The release has also been ported (in part or in whole)
The release has also be ported (in part or in whole) to other to other platforms including BeOS, MacOS, and MS Windows NT/2000.
platforms including BeOS, MacOS, and MS Windows 95/NT.

24
README
View file

@ -73,18 +73,14 @@ DOCUMENTATION
http://www.openldap.org/faq/index.cgi?file=2 http://www.openldap.org/faq/index.cgi?file=2
FEEDBACK / PROBLEM REPORTS / DISCUSSIONS SUPPORT / FEEDBACK / PROBLEM REPORTS / DISCUSSIONS
We would appreciate any feedback you can provide. If you have OpenLDAP is user supported. If you have problems, please
problems, report them using our Issue Tracking System: review the OpenLDAP FAQ <http://www.openldap.org/faq/> and
archives of the OpenLDAP-software and OpenLDAP-bugs mailing
http://www.OpenLDAP.com/its/ lists <http://www.openldap.org/lists/>.
or by sending e-mail to:
OpenLDAP-its@OpenLDAP.org
Additional mailing lists are available for discussion proposes.
Please see:
http://www.OpenLDAP.com/lists/
Issues, such as bug reports, should be reported using our
our Issue Tracking System <http://www.OpenLDAP.com/its/> or
by sending mail to OpenLDAP-its@OpenLDAP.org. Do not use
this system for general or software equiries. Please direct
these to the appropriate mailing list.

View file

@ -1,10 +1,10 @@
OpenLDAP Contributed Software README OpenLDAP Contributed Software README
OpenLDAP provides a number of freely-distributable LDAP software OpenLDAP provides a number of freely-distributable LDAP software
packages. Though distributed with OpenLDAP, they are not packages. Though distributed with OpenLDAP, they are not part of
part of OpenLDAP. Each package in this directory has it's OpenLDAP. Some packages may be out of date. Each package in
own use and redistribution restrictions as documented within this directory has it's own use and redistribution restrictions
the package. as documented within the package.
Current contributions: Current contributions:
gtk-tool gtk-tool
@ -35,4 +35,5 @@ Current contributions:
See whois++/README for more information. See whois++/README for more information.
Please send your contributions to info@OpenLDAP.Org Please submit your contributions using the OpenLDAP Issue
Tracking System <http://www.openldap.org/>.

View file

@ -17,11 +17,11 @@ char* lutil_progname( const char* name, int argc, char *argv[] )
char *progname; char *progname;
if(argc == 0) { if(argc == 0) {
return strdup( name ); return ber_strdup( name );
} }
progname = strrchr ( argv[0], *LDAP_DIRSEP ); progname = strrchr ( argv[0], *LDAP_DIRSEP );
progname = strdup( progname ? &progname[1] : argv[0] ); progname = ber_strdup( progname ? &progname[1] : argv[0] );
return progname; return progname;
} }