Main > Free Download Search >

Free ldap 0.03 software for linux

ldap 0.03

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 464
Samba::LDAP 0.03

Samba::LDAP 0.03


Samba::LDAP is a Perl module to manage a Samba PDC with an LDAP Backend. more>>
Samba::LDAP is a Perl module to manage a Samba PDC with an LDAP Backend.

SYNOPSIS

use Carp;
use Samba::LDAP;

my $samba = Samba::LDAP->new()
or croak "Cant create objectn";
my $domain = $samba->get_local_sid();

<<less
Download (0.080MB)
Added: 2007-01-12 License: Perl Artistic License Price:
1016 downloads
Memlockd 0.03

Memlockd 0.03


Memlockd project locks a list of files into RAM so that if the system starts paging excessively the sysadmin will still recover. more>>
Memlockd project locks a list of files into RAM so that if the system starts paging excessively (as the result of a DOS attack or buggy program), the sysadmin will still be able to login to recover it.
The project will lock regular files as well as programs in memory, and for programs, it can optionally lock all shared objects that they are linked against.
Enhancements:
- The daemon now writes a PID file.
- The restart option of the init.d script now starts a new instance unconditionally so that the new instance can kill the old one.
- This means that there is no time window when memlockd is not running.
<<less
Download (0.007MB)
Added: 2007-03-14 License: GPL (GNU General Public License) Price:
954 downloads
LDAP Shell 2.0

LDAP Shell 2.0


LDAP Shell is an interactive LDAP shell written in Perl. more>>
LDAP Shell is an interactive LDAP shell written in Perl and allowing basic administrative functionality, such as crawling the directory tree and modifying entries.
It is composed of two parts: Net::LDAP::Config, and ldapsh.
Net::LDAP::Config is a library for simplifying and centralizing access to your LDAP repositories. Instead of having every single script ask for your ldap server and search base, or have it hard coded, you can simply use this library:
my $config = Net::LDAP::Config->new("default");
Its got a couple other nice features, like the fact that it caches your LDAP UID (per host), so you should only ever have to type it in once. Its pretty well documented, so perldoc Net::LDAP::config should get you the rest of the way.
ldapsh, and its corresponding library Net::LDAP::Shell, provide (shockingly) the shell behaviour. When run, ldapsh drops you into a (very simple) interpreter.
Even given its simplicity, though, ldapsh is still very useful: You can use it to walk your LDAP tree, you can clone existing objects (using the clone command), remove objects (can you guess the command?), and create new objects using new.
The new command, when provided one or more objectclasses, will automatically retrieve the required and optional attributes for those objectclasses, which can be a great time-saver.
Enhancements:
- A lot of cleanup, some new commands, and Term::ReadKey support.
<<less
Download (0.040MB)
Added: 2005-11-17 License: GPL (GNU General Public License) Price:
1437 downloads
XML::DOM2 0.03

XML::DOM2 0.03


XML::DOM2 is a DOM controlled, strict XML module for extentable xml objects. more>>
XML::DOM2 is a DOM controlled, strict XML module for extentable xml objects.
XML::DOM2 is yet _another_ perl XML module.
Main features:
- DOM Level2 Compilence in both document, elements and attributes
- NameSpace control for elements and attributes
- XPath (its just one small method once you have a good DOM)
- Extendability:
- Document, Element or Attribute classes can be used as base class for other kinds of document, element or attribute.
- Element and Attribute Handler allows element specific child elements and attribute objects.
- Element and Attribute serialisation overiding.
- Parsing with SAX (use XML::SAX::PurePerl for low dependancy installs)
- Internal serialisation
<<less
Download (0.017MB)
Added: 2006-07-14 License: Perl Artistic License Price:
1199 downloads
Samba::LDAP::User 0.03

Samba::LDAP::User 0.03


Samba::LDAP::User is a Perl module to manipulate a Samba LDAP User. more>>
Samba::LDAP::User is a Perl module to manipulate a Samba LDAP User.

SYNOPSIS

use Carp;
use Samba::LDAP::User;

# create Template object
my $user = Samba::LDAP::User->new()
or croak "Cant create objectn";

Various methods to manipulate a Samba LDAP user. Add, delete, modify, show and change a users password.

INTERFACE

new

Create a new Samba::LDAP::User object

add_user

Takes many options. For example:

user =>
oldpass =>
newpass =>
workstation =>
ou =>
user_uid =>
group =>
windows_user =>
trust_account =>
homedir =>
shell =>
gecos =>
skeleton_dir =>
surname =>
family_name =>
local_mail_address =>
mail_to_address =>
time_to_wait =>
aix =>
groups =>
ox =>
can_change_pass =>
must_change_pass =>
account_flags =>
logon_script =>
home_path =>
home_drive =>
user_profile =>
aix_user =>

The above options are only needed if you dont want to use the defaults that are set in /etc/smbldap/smbldap.conf

delete_user
disable_user
is_valid_user
is_samba_user
is_unix_user
is_nonldap_unix_user
get_homedir
make_hash
change_password
change_password(
user => ghenry,
oldpass => "$oldpass",
newpass => "$newpass",
samba => 1, # Update only Samba pass, can be
# unix => 1 for unix pass only
);

Change user password in LDAP Directory

Checks the users exists first, then changes the password If user doesnt exist, returns the error etc.

If no oldpass arg is passed, binds as rootdn and sets a password

Default is set to change/add a Samba "and" Unix password. If you dont want this, pass in unix => 0, or samba => 0, etc.

<<less
Download (0.080MB)
Added: 2007-01-12 License: Perl Artistic License Price:
1024 downloads
guile-ldap 2003.11.03

guile-ldap 2003.11.03


guile-ldap is an extension for GNU Guile providing bindings to the OpenLDAP client library. more>>
guile-ldap is an extension for GNU Guile providing bindings to the OpenLDAP client library. With this library, your Guile Scheme programs can search for information on LDAP servers.

The library does not yet support LDAP operations to modify data on the server; let me know if you have a need for that, or any other missing LDAP features.

Installation:

slashpackage is a good thing. You can read more about it here. If you dont already have /package, create it (on any filesystem you like, as long as its accessible by the name “/package”):

# mkdir -p /usr/local/package
# ln -s /usr/local/package /
# chmod +t /package/.

Then run sp-install:

# sp-install guile-ldap-VERSION.tar.bz2

Or, if you like to do things manually, unpack the tarball and run package/install:

# cd /package
# bunzip2 < /path/to/guile-ldap-VERSION.tar.bz2 |
> tar -xpf -
# cd data/guile-ldap-VERSION
# package/install

Read package/README and package/INSTALL for more detailed instructions.

<<less
Download (0.019MB)
Added: 2006-11-24 License: Perl Artistic License Price:
1065 downloads
pytick 0.03

pytick 0.03


pytick is a customizable stock ticker. more>>
pytick is a customizable stock ticker.
pytick is a fully configurable and elegant stock ticker written in python for your desktop.
pytick gathers its stock quotes from finance.yahoo.com and displays them in a easy to read fashion.
Main features:
- Intuitive Interface
- Fits naturally into your desktop
- Custom Font Selection
- Variable Scroll Speed
<<less
Download (0.007MB)
Added: 2005-12-21 License: GPL (GNU General Public License) Price:
1405 downloads
PySBIG 0.03

PySBIG 0.03


PySBIG can read SBIG CCD files and give you a Numeric array for the data and a dictionary for the headers. more>>
PySBIG project can read SBIG CCD files and give you a Numeric array for the data and a dictionary for the headers.
There is cPySBIG (since version 0.02) which is 40 times faster than the pure PySBIG module, also included. Version 0.03 now works with numpy instead of Numeric.
Example Usage:
import PySBIG
sbig = PySBIG.PySBIG("mysbigfile.st9")
data = sbig.getData() #two dimentional array
headers = sbig.getHeaders() #dictionary
OR
import cPySBIG
sbig = cPySBIG.cPySBIG("mysbigfile.st9")
data = sbig.getData() #two dimentional array
headers = sbig.getHeaders() #dictionary
Enhancements:
- This release uses numpy instead of Numeric.
<<less
Download (0.009MB)
Added: 2007-01-05 License: GPL (GNU General Public License) Price:
1022 downloads
Ruby/LDAP 0.9.7

Ruby/LDAP 0.9.7


Ruby/LDAP is an extension module for Ruby. more>>
Ruby/LDAP is an extension module for Ruby that provides the interface to LDAP libraries such as OpenLDAP.

It provides the interface to some LDAP libraries (for example, OpenLDAP, UMich LDAP, Netscape SDK, ActiveDirectory). The common API for application development is described in RFC1823 and most libraries comply with it. Ruby/LDAP supports those libraries.

<<less
Download (0.083MB)
Added: 2006-08-09 License: BSD License Price:
1177 downloads
Acme::Tpyo 0.03

Acme::Tpyo 0.03


Acme::Tpyo consists of a Perl extension for misspelling words. more>>
Acme::Tpyo consists of a Perl extension for misspelling words.

Tired of having to misspell your words on accident? Want to do it more often and worse than normal?

Acme::Tpyo is for you! With Acme::Tpyo you can use your normally perfectly type strings and make them look like a 2nd grader!

Great to give your project that professional edge your boss is always asking for!

<<less
Download (0.003MB)
Added: 2007-03-30 License: Perl Artistic License Price:
938 downloads
Samba::LDAP::Config 0.03

Samba::LDAP::Config 0.03


Samba::LDAP::Config is a Perl module to config file related tasks for Samba::LDAP. more>>
Samba::LDAP::Config is a Perl module to config file related tasks for Samba::LDAP.

SYNOPSIS

use Samba::LDAP::Config;

my $config = Samba::LDAP::Config->new()
or die "Cant create objectn";

# Returns where smbldap.conf, smbldap_bind.conf and
# smb.conf are located
my $smbldap_conf = $config->find_smbldap();
my $smbldap_bind_conf = $config->find_smbldap_bind();
my $samba_conf = $config->find_samba();

Various methods to find where the related Samba configuration files are saved, read them in and write them out etc. Subclasses Config::Tiny.

INTERFACE

new

Create a new Samba::LDAP::Config object

find_smbldap

Searches in usual places for smbldap.conf and returns location found.

my $smbldap_conf = $config->find_smbldap();

Returns the smbldap.conf in the scripts, if nothing found.

find_smbldap_bind

Searches in usual places for smbldap_bind.conf and returns location found.

my $smbldap_bind_conf = $config->find_smbldap_bind();

Returns the smbldap_bind.conf in the scripts, if nothing found.

find_samba

Searches in usual places for smb.conf and returns location found.

my $smb_conf = $config->find_samba();

Returns the smb.conf in the scripts, if nothing found.

read_conf

Wrapper to provide an instant error message as returned by the native Config::Tiny read method

my $conf = $config->read_conf( $filename );

read_string

Overrides Config::Tinys read_string to exclude the " " marks found in smbldap.conf and smbldap_bind.conf and remove section handling, as we dont have any [sections] in either of these files.

Also substitutes the suffix hash ( ${suffix} ) with its value.
Need to fix the smb.conf reading. Will use File::Samba or Config::Auto for it instead.

<<less
Download (0.080MB)
Added: 2007-01-12 License: Perl Artistic License Price:
1021 downloads
Net::LDAP::FAQ 0.34

Net::LDAP::FAQ 0.34


Net::LDAP::FAQ is a Perl module with Frequently Asked Questions about Net::LDAP. more>>
Net::LDAP::FAQ is a Perl module with Frequently Asked Questions about Net::LDAP.

SYNOPSIS

perldoc Net::LDAP::FAQ

This document serves to answer the most frequently asked questions on both the perl-ldap Mailing List and those sent to Graham Barr.

The latest version of this FAQ can be found at

http://ldap.perl.org/FAQ.html

GENERAL

What is perl-ldap ?

perl-ldap is the distribution name. The perl-ldap distribution contains the Net::LDAP modules.

Why another perl LDAP implementation ?

perl-ldaps goal is to be as portable as possible. It does this by being implemented completely in perl. So basically anywhere that perl runs perl-ldap will run. This is not true for other implementations which require a C compiler.

Where can I get it ?

Perl-ldap is available from CPAN. You will find it in the authors/id/GBARR directory. Alternatively you can download the latest version from

http://www.cpan.org/search?dist=perl-ldap

WARNING: The perl-ldap module is stored on CPAN as a *.gz file. Netscape on Windows systems sometimes has a problem storing the module with the correct name, it will replace the *.tar.gz with *_tar.tar. To correct the problem, with the pointer on the link, do a right click and then select save link as to save the file with the correct file name.

<<less
Download (0.25MB)
Added: 2007-02-23 License: Perl Artistic License Price:
974 downloads
Data::ENAML 0.03

Data::ENAML 0.03


Data::ENAML is a Perl extension for ENAML data representation. more>>
Data::ENAML is a Perl extension for ENAML data representation.

SYNOPSIS

use Data::ENAML qw (serialize deserialize);

print serialize(login => {nick => Schop,
email => ariel@atheist.org.il,
tagline => If I had no modem I would not lose Regina});

$struct = deserialize(bad-nick: {nick: "c00l dewd" text: "spaces not allowed"});

ENAML stands for ENAML is Not A Markup Language. (And as we all know, Gnu is Not UNIX, Pine Is Not Email, Wine Is Not Emulator, Lame Aint Mp3 Encoder and so on).

ENAML was defined by Robey Pointer for use in Say2, check http://www.lag.net/say2.

<<less
Download (0.004MB)
Added: 2006-11-15 License: Perl Artistic License Price:
1073 downloads
App::Manager 0.03

App::Manager 0.03


App::Manager is a Perl module for installing, managing and uninstalling software packages. more>>
App::Manager is a Perl module for installing, managing and uninstalling software packages.

SYNOPSIS

use App::Manager; # use appman instead

<<less
Download (0.017MB)
Added: 2007-01-11 License: Perl Artistic License Price:
1023 downloads
Asterisk::LDAP 0.6.0

Asterisk::LDAP 0.6.0


Asterisk::LDAP is a perl module for generating Asterisk 1.0 compatible configuration files from an LDAP directory tree. more>>
Asterisk::LDAP is a perl module for generating Asterisk 1.0 compatible configuration files from an LDAP directory tree.
The package includes everything you need to get started, including the module itself, schema files, and example code.
Functionality is provided to see if a reload is necessary and optionally send asterisk a reload command when updates are made. Included is a script that can be called from voicemail.confs externpass option to update a users voice mailbox PIN number in LDAP.
Asterisk::LDAP is currently capable of generating extensions.conf, voicemail.conf, and musiconhold.conf. Support is planned for sip.conf, iax.conf, and meetme.conf.
Enhancements:
- Contexts are now written with a serial number and are not updated unless the serial number is incremented.
- This allows for granular and guaranteed consistent updates.
- The API has been dramatically cleaned up.
- Where before a number of calls were required to set up before getting any useful data out, only one call is required and three more optional calls can help automate most of the configuration.
- The developer may now choose to read the information from LDAP or write the contents to a set of files or to access the internal data structures directly for manual formatting.
<<less
Download (0.034MB)
Added: 2005-12-21 License: GPL (GNU General Public License) Price:
1402 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5