Main > Free Download Search >

Free ldap sync software for linux

ldap sync

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 390
LDAP Account Manager 2.6.0 / 2.7.0 RC1

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 2.6.0LDAP 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 displayed
Price: FREE
License:GPL
Download
1 downloads
Added: 2009-04-09
LDAP Account Manager 2.0.0LDAP Account Manager is a software with you can manage Unix and Samba ...LDAP Account Manager you can manage Unix and Samba user and group accounts
License:GPL (GNU General Public License)
Download (1.6MB)
816 downloads
Added: 2007-08-09
OpenLDAP 2.3.35

OpenLDAP 2.3.35


OpenLDAP software is an open source implementation of the Lightweight Directory Access Protocol. more>>
OpenLDAP project is an open-standard protocol for accessing X.500 directory services. The protocol runs over Internet transport protocols, such as TCP.

LDAP is a lightweight alternative to the X.500 Directory Access Protocol (DAP) for use on the Internet. It uses TCP/IP stack verses the overly complex OSI stack. It also has other simplications, such as the representing most attribute values and many protocol items as textual strings, that are designed to make clients easier to implement.

The OpenLDAP Project is pleased to announce the availability of OpenLDAP Software 2.3, a suite of the Lightweight Directory Access Protocol (v3) servers, clients, utilities, and development tools.

This release contains the following major enhancements:

Slapd(8) enhancements

Updated slapd "overlay" interface, and several example (and mostly experimental) overlays.
Updated LDAP "sync" Engine with replication support, provider now an "overlay"
Numerous access control enhancements, including experimental "dont disclose on error" capability
Configuration backend

LDAPv3 extensions, including:

LDAP Password Policy
LDAP Component Matching (requires OpenLDAP snacc)
LDAP Modify Increment

This release includes the following major components:

slapd - a stand-alone LDAP directory server
slurpd - a stand-alone LDAP replication server
-lldap - a LDAP client library
-llber - a lightweight BER/DER encoding/decoding library
LDIF tools - data conversion tools for use with slapd
LDAP tools - A collection of command line LDAP utilities
Admin Guide, Manual Pages - associated documentation
SNACC - ASN.1 development tools for OpenLDAP

In addition, there are some contributed components:

LDAPC++ - a LDAP C++ SDK
Various slapd modules and slapi plugins
<<less
Download (3.5MB)
Added: 2007-05-08 License: GPL (GNU General Public License) Price:
560 downloads
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
Python-LDAP 2.3.9

Python-LDAP 2.3.9


Python-LDAP provides users with an object-oriented API which is a quick and easy way to access LDAP directory servers from Python programs. more>> <<less
Added: 2009-07-26 License: Python License Price: FREE
downloads
 
Other version of Python-LDAP
Python-LDAP 2.3.1Python-LDAP provides an object-oriented API to access LDAP directory servers ... Additionally the package contains modules for other LDAP-related stuff (e.g. processing
License:Python License
Download (0.073MB)
506 downloads
Added: 2007-07-25
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
CSS Sync 0.2

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.

<<less
Download (0.005MB)
Added: 2007-04-10 License: MPL (Mozilla Public License) Price:
935 downloads
SearchBox Sync 1.3

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
SearchBox Sync 0.4.2SearchBox Sync allows you to synchronize the searchbox content. SearchBox Sync 0.4.2 - legege ... SearchBox Sync allows you to synchronize the searchbox content. SearchBox Sync enables you to
License:MPL (Mozilla Public License)
Download (0.043MB)
923 downloads
Added: 2007-04-17
File::Sync 0.09

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.

<<less
Download (0.004MB)
Added: 2006-06-29 License: Perl Artistic License Price:
1213 downloads
Quick and Dirty Sync 0.1

Quick and Dirty Sync 0.1


Quick and Dirty Sync tries to make two directories the same by comparing files sizes and copying new or changed files across. more>>
Quick and Dirty Sync tries to make two directories the same by comparing files sizes and copying new or changed files across in both directions, meaning you dont need to supply a "from" and "to" directory. Quick and Dirty Sync project works for local and (some) FTP directories.

Your mileage may vary, and all your files may be destroyed. You have been warned.

<<less
Download (0.024MB)
Added: 2006-12-19 License: GPL (GNU General Public License) Price:
1041 downloads
mod-vhost-ldap 1.0

mod-vhost-ldap 1.0


mod-vhost-ldap is an Apache 2.x module for storing and configuring virtual hosts from LDAP. more>>
mod-vhost-ldap is an Apache 2.x module for storing and configuring virtual hosts from LDAP. mod-vhost-ldap project supports DocumentRoot, ScriptAlias, ServerName, ServerAlias, ServerAdmin, and SuexecUserGroup directives.

Its built on top of mod_ldap, so it uses its caching capabilities and can be used with a threaded Apache httpd.
<<less
Download (0.007MB)
Added: 2006-01-31 License: The Apache License 2.0 Price:
1365 downloads
OurNet::BBSApp::Sync 0.87

OurNet::BBSApp::Sync 0.87


OurNet::BBSApp::Sync is a Perl module to sync between BBS article groups. more>>
OurNet::BBSApp::Sync is a Perl module to sync between BBS article groups.

SYNOPSIS

my $sync = OurNet::BBSApp::Sync->new({
artgrp => $local->{boards}{board1}{articles},
rartgrp => $remote->{boards}{board2}{articles},
param => {
lseen => 0,
rseen => 0,
remote => bbs.remote.org,
backend => BBSAgent,
board => board2,
lmsgid => ,
msgids => {
articles => [
,
,
],
archives => [
,
,
],
},
},
force_fetch => 0,
force_send => 0,
force_none => 0,
msgidkeep => 128,
recursive => 0,
clobber => 1,
backend => BBSAgent,
logfh => *STDOUT,
callback => sub { },
});

$sync->do_fetch(archives);
$sync->do_send;

OurNet::BBSApp::Sync performs a sophisticated synchronization algorithm on two OurNet::BBS ArticleGroup objects. It operates on the first one (lartgrp)s behalf, updates whats being done in the param field, and attempts to determine the minimally needed transactions to run.

The two methods, do_fetch and do_send could be used independently. Beyond that, note that the interface might change in the future, and currently its only a complement to the ebx toolkit.

<<less
Download (0.024MB)
Added: 2007-03-24 License: Perl Artistic License Price:
944 downloads
Apache LDAP vhost driver 1.1

Apache LDAP vhost driver 1.1


Apache LDAP vhost driver lets you put vhost with all possible information in an LDAP database for both Apache 1.x and 2.x. more>>
Apache LDAP vhost driver project lets you put vhost with all possible information in an LDAP database for both Apache 1.x and 2.x.

Bug report system

With the new maintainence, there is now also a bug report system at the URL http://bugs.bayour.com/ (project mod_ldap_cfg).

Schemas

A schema called mod_ldap_cfg is used.

Apache config

To setup Apache to use this module, the httpd.conf is used.
<<less
Download (MB)
Added: 2007-07-12 License: GPL (GNU General Public License) Price:
834 downloads
OpenSSH LDAP Public Key patch 0.3.9

OpenSSH LDAP Public Key patch 0.3.9


The OpenSSH LDAP Public Key patch provides an easy way of centralizing strong user authentication. more>>
OpenSSH LDAP Public Key patch provides an easy way of centralizing strong user authentication by using an LDAP server for retrieving public keys instead of ~/.ssh/authorized_keys.
It uses the standard core.schema/nis.schema and strongAuthenticationUser object class, which can simplify login centralization but could introduce serious security flaws if the LDAP server is not correctly configured.
Enhancements:
- A memory leak has been fixed.
- A potential LDAP filter injection if a username has strange characters in it [()*] has been fixed.
<<less
Download (0.059MB)
Added: 2007-08-04 License: BSD License Price:
815 downloads
Konvi-Kopete Away Sync 1.0

Konvi-Kopete Away Sync 1.0


Konvi-Kopete Away Sync is a small script that helps sync Kopete and Konversation away status via DCOP. more>>
Konvi-Kopete Away Sync is a small script that helps sync Kopete and Konversation away status via DCOP.

Copy the file to either ~/.kde/share/apps/konversation/scripts for local install or $KDEDIR/share/apps/konversation/scripts for system wide install. Then bind /exec dblAway.sh away and /exec dblAway.sh back to whatever commands you want (Settings->Configure Konversation->Behavior->Command Aliases)

Tested on Konversation 1.0.1 with Kopete 0.12.5 on KDE 3.5.7 on Archlinux Duke.

Post which Kopete versions and Konvi versions it works on!

<<less
Download (MB)
Added: 2007-05-23 License: GPL (GNU General Public License) Price:
888 downloads
LDAP Administration Tool 1.3.2

LDAP Administration Tool 1.3.2


LDAP Administration Tool is a tool to manage LDAP-based directories. more>>
LDAP Administration Tool is a tool to manage LDAP-based directories.
LDAP Administration Tool stands for LDAP Administration Tool. The tool allows you to browse LDAP-based directories and add/edit/delete entries contained within. It can store profiles for quick access to different servers.
Main features:
- User, Group Computer and user-defined views
- Directory browser
- Schema browser
- LDIF imports and exports
- Samba and Active Directory support
- Mass-edit support
- Integration with GNOME
<<less
Download (0.44MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
1003 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5