ldap sync maximo
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 390
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.
<<lessIt 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.
Download (0.040MB)
Added: 2005-11-17 License: GPL (GNU General Public License) Price:
1437 downloads
CSS Sync 0.2
CSS Sync is a Firefox extension which automatically Sync the CSS from your server. more>>
CSS Sync is a Firefox extension which automatically Sync the CSS from your server.
Automatically Sync the CSS from your server! This extension automatically syncs the style sheets that you edit on the server side to the client and applies them continuously.
For a web developer this will save lot of time. In development stage you just need to continuously edit the style sheet on server and see the effect on client side(browser) instantaneously.
<<lessAutomatically Sync the CSS from your server! This extension automatically syncs the style sheets that you edit on the server side to the client and applies them continuously.
For a web developer this will save lot of time. In development stage you just need to continuously edit the style sheet on server and see the effect on client side(browser) instantaneously.
Download (0.005MB)
Added: 2007-04-10 License: MPL (Mozilla Public License) Price:
935 downloads

LDAP Account Manager 2.6.0 / 2.7.0 RC1
LDAP Account Manager RC1 is a webfrontend for managing accounts stored in an LDAP directory. more>> <<less
Added: 2009-07-27 License: GPL Price: FREE
downloads
Other version of LDAP Account Manager
LDAP Account Manager is a useful software which helps you manage Unix and Samba user and group ... Added config option to search LAM login users in LDAP (RFE 2494249) Help messages are displayedPrice: FREE
License:GPL
License:GPL
License:GPL (GNU General Public License)
Podsyncr 0.1
Podsyncr allows you to sync photos and sets on Flickr to an iPod. more>>
Podsyncr allows you to sync photos and sets on Flickr to an iPod. It currently only works with the 2nd generation iPod Nano.
Podsyncr downloads the photos and stores them into an iPod photo database.
Supported Models
Currently only the iPod Nano 2nd gen. is supported. If you have any other model just send me a small sample Photo Database and I will add support for it.
Usage
Start podsyncr.jar
Authenticate yourself to flickr by clicking on auth and following the instructions
click on sync and wait
copy "~/.podsyncr/Photo Database" to the Photos directory on your ipod
copy "~/.podsyncr/F*.ithmb" to the Photos/Thumbs directory
podsyncr is licensed under the GPL version 2 and includes software developed by Aetrion LLC (flickrj).
<<lessPodsyncr downloads the photos and stores them into an iPod photo database.
Supported Models
Currently only the iPod Nano 2nd gen. is supported. If you have any other model just send me a small sample Photo Database and I will add support for it.
Usage
Start podsyncr.jar
Authenticate yourself to flickr by clicking on auth and following the instructions
click on sync and wait
copy "~/.podsyncr/Photo Database" to the Photos directory on your ipod
copy "~/.podsyncr/F*.ithmb" to the Photos/Thumbs directory
podsyncr is licensed under the GPL version 2 and includes software developed by Aetrion LLC (flickrj).
Download (0.15MB)
Added: 2007-01-05 License: GPL (GNU General Public License) Price:
1023 downloads
LDAP User Management System 0.4
LDAP User Management System provides a set of basic LDAP API functions for PHP and a strong configuration language. more>>
LDAP User Management System (LUMS) provides a set of basic LDAP API functions for PHP and a strong configuration language. The project can then be used to create Web services or can be used in any PHP script.
The language allows the administrator to define LDAP object types along with their corresponding attributes.
Each attribute may be defined as required as multivalued with a type (string, binary, dn, telephone, mail, etc.) and can be user inserted, constant, auto incremented, or function created. Attribute uniqueness is supported.
It exports the following LDAP operations:
- function LUMS_ldap_search($L_binddn,$L_bindpassword,$L_basedn,$L_scope,$L_filter,$L_attrs_array)
Returns an $info object with the search results or a string with an error
- function LUMS_ldap_add_entry($L_binddn, $L_bindpassword,$L_object_type,$L_entrydn,$L_entry_info)
Returns 0 for success or string with error
- function LUMS_ldap_change_password($L_binddn, $L_bindpassword,$L_entrydn,$L_newpassword)
Returns 0 for success or string with error
- function LUMS_ldap_modify_entry($L_binddn, $L_bindpassword, $L_object_type, $L_entrydn, $L_change_info)
Returns 0 for success or string with error
- function LUMS_ldap_delete_entry($L_binddn, $L_bindpassword, $L_object_type, $L_entrydn)
Returns 0 for success or string with error
- function LUMS_ldap_rename_entry($L_binddn, $L_bindpassword, $L_object_type, $L_entrydn, $L_newrdn, $L_newparent, $L_deleteoldrdn)
Enhancements:
- Add a virtual attribute which is not stored on ldap but can be useful when creating other attribute values
- Add mapping between an indexing attribute value to other attribute values
- Fix a few typos
- Perform the same checks for all value types not just uservalue
- Lower case all passed attribute names
<<lessThe language allows the administrator to define LDAP object types along with their corresponding attributes.
Each attribute may be defined as required as multivalued with a type (string, binary, dn, telephone, mail, etc.) and can be user inserted, constant, auto incremented, or function created. Attribute uniqueness is supported.
It exports the following LDAP operations:
- function LUMS_ldap_search($L_binddn,$L_bindpassword,$L_basedn,$L_scope,$L_filter,$L_attrs_array)
Returns an $info object with the search results or a string with an error
- function LUMS_ldap_add_entry($L_binddn, $L_bindpassword,$L_object_type,$L_entrydn,$L_entry_info)
Returns 0 for success or string with error
- function LUMS_ldap_change_password($L_binddn, $L_bindpassword,$L_entrydn,$L_newpassword)
Returns 0 for success or string with error
- function LUMS_ldap_modify_entry($L_binddn, $L_bindpassword, $L_object_type, $L_entrydn, $L_change_info)
Returns 0 for success or string with error
- function LUMS_ldap_delete_entry($L_binddn, $L_bindpassword, $L_object_type, $L_entrydn)
Returns 0 for success or string with error
- function LUMS_ldap_rename_entry($L_binddn, $L_bindpassword, $L_object_type, $L_entrydn, $L_newrdn, $L_newparent, $L_deleteoldrdn)
Enhancements:
- Add a virtual attribute which is not stored on ldap but can be useful when creating other attribute values
- Add mapping between an indexing attribute value to other attribute values
- Fix a few typos
- Perform the same checks for all value types not just uservalue
- Lower case all passed attribute names
Download (0.12MB)
Added: 2007-04-28 License: Perl Artistic License Price:
913 downloads

SearchBox Sync 1.3
SearchBox Sync allows you to synchronize the searchbox content. more>>
SearchBox Sync 1.3v is one of the most marvelous tools which can automatically update the search box content when you search directly in a search engine (Google, Yahoo, Live, MSN, YouTube, ...). Custom synchronization rules can be easily added for your preferred search engine.
Enhancements: Improved: Compatibility for Firefox 3.5.
<<less Added: 2009-07-16 License: MPL Price: FREE
15 downloads
Other version of SearchBox Sync
License:MPL (Mozilla Public License)
ldapvacation 1.1.1
ldapvacation is an LDAP-enabled version of the vacation program that sends an more>>
ldapvacation returns a message to the sender of a message telling them that you are currently not reading your mail.
SYNOPSIS
ldapvacation [ -tVv ] [ -b searchbase ] [ -C configfile ] [ -D binddn ]
[ -d dest ] [ -f from ] [ -h ldaphost ] [ -l logfacility ]
[ -m mailattr ] [ -p ldapport ] [ -q query ] [ -u ldapurl ]
[ -w bindpasswd ] [ -x spamheader ]
Options:
-t Use TLS when connecting to the LDAP server.
-V Show the version number and exit.
-v Run in verbose more. Informal message are displayed on standard output and in the syslog.
-b searchbase
Specify the searchbase for LDAP searches.
-C configfile
Read configuration options from configfile.
-D binddn
Specify the distinguished name to use when binding to the LDAP server.
-d dest
Specify the message destination user. If this option is not set, ldapvacation will use the login
name of the user executing it.
-f from
Specify the envelope sender address.
-h ldaphost
Specify the hostname of the LDAP server. This option is deprecated, please use a LDAP URL in-
stead.
-l logfacility
Set the log facility for syslog to logfacility. Possible values are daemon, mail, user, local0,
local1, local2, local3, local4, local5, local6, local7, local8, and local9.
-m mailattr
Specify the LDAP attribute which is used to store local addresses.
-p ldapport
Specify the TCP port number on which to contact the LDAP server. This option is deprecated,
please use a LDAP URL instead.
-q query
Specify the LDAP query to find entries.
-u ldapurl
Specify the LDAP URL of the server to connect to.
-w bindpasswd
Specify the password to use when binding to the LDAP server.
Enhancements:
- A bug in the config file parser was fixed.
<<lessSYNOPSIS
ldapvacation [ -tVv ] [ -b searchbase ] [ -C configfile ] [ -D binddn ]
[ -d dest ] [ -f from ] [ -h ldaphost ] [ -l logfacility ]
[ -m mailattr ] [ -p ldapport ] [ -q query ] [ -u ldapurl ]
[ -w bindpasswd ] [ -x spamheader ]
Options:
-t Use TLS when connecting to the LDAP server.
-V Show the version number and exit.
-v Run in verbose more. Informal message are displayed on standard output and in the syslog.
-b searchbase
Specify the searchbase for LDAP searches.
-C configfile
Read configuration options from configfile.
-D binddn
Specify the distinguished name to use when binding to the LDAP server.
-d dest
Specify the message destination user. If this option is not set, ldapvacation will use the login
name of the user executing it.
-f from
Specify the envelope sender address.
-h ldaphost
Specify the hostname of the LDAP server. This option is deprecated, please use a LDAP URL in-
stead.
-l logfacility
Set the log facility for syslog to logfacility. Possible values are daemon, mail, user, local0,
local1, local2, local3, local4, local5, local6, local7, local8, and local9.
-m mailattr
Specify the LDAP attribute which is used to store local addresses.
-p ldapport
Specify the TCP port number on which to contact the LDAP server. This option is deprecated,
please use a LDAP URL instead.
-q query
Specify the LDAP query to find entries.
-u ldapurl
Specify the LDAP URL of the server to connect to.
-w bindpasswd
Specify the password to use when binding to the LDAP server.
Enhancements:
- A bug in the config file parser was fixed.
Download (0.020MB)
Added: 2006-03-28 License: BSD License Price:
1305 downloads
Added: 2008-12-10 License: GPL Price: FREE
17 downloads
Download (0.049MB)
Added: 2005-05-05 License: GPL (GNU General Public License) Price:
1646 downloads
pldap 0.2
Pldap short from PAM LDAP Module is an experimental attempt at writing a new LDAP authentication module for PAM. more>>
Pldap short from PAM LDAP Module is an experimental attempt at writing a new LDAP authentication module for PAM. It is currently beta code, and only implements the basic elements of LDAP authentication.
However, it does provide all the elements of a PAM module, and can be used to authenticate and authorise users against an LDAP database.
Main features:
- Simple bind against a directory to authenticate a user
- User defined templates for matching a userid to a DN
- Configurable filters for searching groups to authorise a login
- Change password capability
- TLS security
- Support for Linux, NetBSD, FreeBSD and Solaris
- Links to both the Solaris and OpenLDAP client libraries
Enhancements:
- Support for Solaris and FreeBSD
- Configure fixes to determine client LDAP libraries
- Compile under Redhat FC5
- Minor Bug Fixes
<<lessHowever, it does provide all the elements of a PAM module, and can be used to authenticate and authorise users against an LDAP database.
Main features:
- Simple bind against a directory to authenticate a user
- User defined templates for matching a userid to a DN
- Configurable filters for searching groups to authorise a login
- Change password capability
- TLS security
- Support for Linux, NetBSD, FreeBSD and Solaris
- Links to both the Solaris and OpenLDAP client libraries
Enhancements:
- Support for Solaris and FreeBSD
- Configure fixes to determine client LDAP libraries
- Compile under Redhat FC5
- Minor Bug Fixes
Download (0.29MB)
Added: 2006-04-27 License: The Apache License 2.0 Price:
1275 downloads
ldap2dns 0.4.1
ldap2dns is a program to create DNS records directly from an LDAP database. more>>
ldap2dns is a program to create DNS records directly from an LDAP database. ldap2dns project can and should be be used to replace the secondary name server by a second primary one. ldap2dns helps reduce all kinds of administration overhead.
No more flat file editing, no more zone file editing. After having installed ldap2dns, the administrator only has to access the LDAP database.
If she desires, she can add access control for each zone, create a special GUI, or use one of the existing LDAP GUIs and add all other kind of zone and resource record information without interfering with the DNS server.
ldap2dns is designed to write an ASCII data file used by tinydns (from the djbdns package), or a zonename.db -file as used by named.
<<lessNo more flat file editing, no more zone file editing. After having installed ldap2dns, the administrator only has to access the LDAP database.
If she desires, she can add access control for each zone, create a special GUI, or use one of the existing LDAP GUIs and add all other kind of zone and resource record information without interfering with the DNS server.
ldap2dns is designed to write an ASCII data file used by tinydns (from the djbdns package), or a zonename.db -file as used by named.
Download (0.053MB)
Added: 2006-10-20 License: GPL (GNU General Public License) Price:
1099 downloads
File::Sync 0.09
File::Sync is a Perl access to fsync() and sync() function calls. more>>
File::Sync is a Perl access to fsync() and sync() function calls.
SYNOPSIS
use File::Sync qw(fsync sync);
fsync(*FILEHANDLE) or die "fsync: $!";
sync();
use File::Sync qw(fsync);
use IO::File;
$fh = IO::File->new("> /tmp/foo")
or die "new IO::File: $!";
...
fsync($fh) or die "fsync: $!";
The fsync() function takes a Perl file handle as its only argument, and passes its fileno() to the C function fsync(). It returns undef on failure, or true on success.
The fsync_fd() function is used internally by fsync(); it takes a file descriptor as its only argument.
The sync() function is identical to the C function sync().
This module does not export any methods by default, but fsync() is made available as a method of the FileHandle and IO::Handle classes.
<<lessSYNOPSIS
use File::Sync qw(fsync sync);
fsync(*FILEHANDLE) or die "fsync: $!";
sync();
use File::Sync qw(fsync);
use IO::File;
$fh = IO::File->new("> /tmp/foo")
or die "new IO::File: $!";
...
fsync($fh) or die "fsync: $!";
The fsync() function takes a Perl file handle as its only argument, and passes its fileno() to the C function fsync(). It returns undef on failure, or true on success.
The fsync_fd() function is used internally by fsync(); it takes a file descriptor as its only argument.
The sync() function is identical to the C function sync().
This module does not export any methods by default, but fsync() is made available as a method of the FileHandle and IO::Handle classes.
Download (0.004MB)
Added: 2006-06-29 License: Perl Artistic License Price:
1213 downloads
LDAPab 0.1
LDAPab is a Web-based address book for small companies. more>>
LDAPab is a Web-based address book for small companies. LDAPab features a public address book which is writable for all company staff and a personal address book for each staff member. LDAPab requires an existing LDAP server to authenticate users.
<<less Download (0.10MB)
Added: 2005-11-16 License: GPL (GNU General Public License) Price:
1437 downloads
um zu sync 0.0.1
um zu sync software is a file backup and synchronization tool. more>>
um zu sync software is a file backup and synchronization tool.
um zu sync utilizes libinotify so that files can be synchronized as soon as they are modified.
Warning! This software is at a very early stage of development. As such it is likely it may contain bugs that could damage your system and destroy data. Proceed with caution.
<<lessum zu sync utilizes libinotify so that files can be synchronized as soon as they are modified.
Warning! This software is at a very early stage of development. As such it is likely it may contain bugs that could damage your system and destroy data. Proceed with caution.
Download (0.010MB)
Added: 2007-05-17 License: GPL (GNU General Public License) Price:
890 downloads
eGWSync 0.1
eGWSync allows you to access your eGroupware contacts (which are stored in a MySQL or PostgreSQL database) through LDAP. more>>
eGWSync allows you to access your eGroupware contacts (which are stored in a MySQL or PostgreSQL database) through LDAP.
Youll be able to use Mozilla Thunderbird, Eudora, Outlook to see your contacts through your LDAP server.
Main features:
- Only replicates contacts that have been added or changed
- Does not need additional schema to be loaded into the LDAP server - only person, organizationalPerson and inetorgperson are required.
Benefits
Use the friendly and efficient eGroupware system to manage your contacts
Access the contacts from other applications like Squirrelmail or Mozilla Thunderbird.
<<lessYoull be able to use Mozilla Thunderbird, Eudora, Outlook to see your contacts through your LDAP server.
Main features:
- Only replicates contacts that have been added or changed
- Does not need additional schema to be loaded into the LDAP server - only person, organizationalPerson and inetorgperson are required.
Benefits
Use the friendly and efficient eGroupware system to manage your contacts
Access the contacts from other applications like Squirrelmail or Mozilla Thunderbird.
Download (0.008MB)
Added: 2006-09-15 License: GPL (GNU General Public License) Price:
1135 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above ldap sync maximo search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed