outlook ldap sync
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 448
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.
<<lessYour mileage may vary, and all your files may be destroyed. You have been warned.
Download (0.024MB)
Added: 2006-12-19 License: GPL (GNU General Public License) Price:
1041 downloads
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.
<<lessSYNOPSIS
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.
Download (0.024MB)
Added: 2007-03-24 License: Perl Artistic License Price:
944 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
Download (0.27MB)
Added: 2007-06-18 License: GPL (GNU General Public License) Price:
860 downloads
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
License:Python License
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.
<<lessIts built on top of mod_ldap, so it uses its caching capabilities and can be used with a threaded Apache httpd.
Download (0.007MB)
Added: 2006-01-31 License: The Apache License 2.0 Price:
1365 downloads
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
mod_mldap 0.71
mod_mldap is a simple LDAP authentication module for Apache 2. more>>
mod_mldap is a simple LDAP authentication module for Apache 2.
Quick installtion of the dynamic module:
As root, run:
make install
It may be necessary to edit the include and APXS paths in
the Makefile.
Config options:
* MLDAP_URL LDAP URL.
* MLDAP_userAttr LDAP user name attibute. The default is "uid".
* MLDAP_pwAttr LDAP encrypted password attribute. Default
"UserPassword".
* MLDAP_logLevel Set to 1000 or above for debug messages.
The default is 0 (only error messages).
* MLDAP_Authoritative Set to "Off" to pass control to other authentication
modules if authentication fails. Default is "On".
Example (.htaccess):
AuthType Basic
AuthName TopSecret
MLDAP_URL ldap://127.0.0.1/dc=narpes,dc=com??sub?(objectClass=uidObject)
Require valid-user
<<lessQuick installtion of the dynamic module:
As root, run:
make install
It may be necessary to edit the include and APXS paths in
the Makefile.
Config options:
* MLDAP_URL LDAP URL.
* MLDAP_userAttr LDAP user name attibute. The default is "uid".
* MLDAP_pwAttr LDAP encrypted password attribute. Default
"UserPassword".
* MLDAP_logLevel Set to 1000 or above for debug messages.
The default is 0 (only error messages).
* MLDAP_Authoritative Set to "Off" to pass control to other authentication
modules if authentication fails. Default is "On".
Example (.htaccess):
AuthType Basic
AuthName TopSecret
MLDAP_URL ldap://127.0.0.1/dc=narpes,dc=com??sub?(objectClass=uidObject)
Require valid-user
Download (0.005MB)
Added: 2006-05-08 License: MIT/X Consortium License Price:
1264 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
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
<<lessLDAP 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
Download (3.5MB)
Added: 2007-05-08 License: GPL (GNU General Public License) Price:
560 downloads
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.
<<lessThe 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.
Download (0.034MB)
Added: 2005-12-21 License: GPL (GNU General Public License) Price:
1402 downloads
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.
<<lessIt 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.
Download (0.083MB)
Added: 2006-08-09 License: BSD License Price:
1177 downloads
ProFTPD Quota LDAP module 1.0.1
ProFTPD Quota LDAP module provides a ProFTPD module that imposes quotas based on LDAP user accounts. more>>
ProFTPD Quota LDAP module provides a ProFTPD module that imposes quotas based on LDAP user accounts.
This module is designed to impose quotas, on FTP accounts, based on user accounts. It is based on the ideas contained in Eric Estabrooks mod_quota and TJ Saunders mod_quotatab; however, this module has been written from scratch to implement quotas in a very different manner.
Installation
To install mod_quota_ldap, follow these instructions. After unpacking the tarball, copy the mod_quota_ldap.c file into:
{proftpd-dir}/contrib/
after unpacking the latest proftpd-1.2 source code. Follow the usual steps for using third-party modules in proftpd:
$ ./configure --with-modules=mod_quota_ldap make make install
Enhancements:
- Release works with proFTPd-1.2.8 or higher
- Bug#679338 & Bug#679343 - quota_ldap_getconf() bug solved
<<lessThis module is designed to impose quotas, on FTP accounts, based on user accounts. It is based on the ideas contained in Eric Estabrooks mod_quota and TJ Saunders mod_quotatab; however, this module has been written from scratch to implement quotas in a very different manner.
Installation
To install mod_quota_ldap, follow these instructions. After unpacking the tarball, copy the mod_quota_ldap.c file into:
{proftpd-dir}/contrib/
after unpacking the latest proftpd-1.2 source code. Follow the usual steps for using third-party modules in proftpd:
$ ./configure --with-modules=mod_quota_ldap make make install
Enhancements:
- Release works with proFTPd-1.2.8 or higher
- Bug#679338 & Bug#679343 - quota_ldap_getconf() bug solved
Download (0.014MB)
Added: 2007-04-30 License: GPL (GNU General Public License) Price:
915 downloads
mod_psldap 0.89
mod_psldap is an Apache module that performs authentication authorization against an LDAP server. more>>
mod_psldap is an Apache module that performs authentication authorization against an LDAP server using several different means of managing the authentication and authorization processes.
mod_psldap implementation can also manage records through a Web interface, and authenticate against an LDAP server that restricts the user from reading the password and the implementation of Kerberos-based authentication to connect to the LDAP server itself.
Enhancements:
- This release provides AJAX functionality, allowing for the DSML form of the LDAP records to be browsed offline from either the organizational or management tree views.
- A minor issue with recognition of the search scope as defined in the URI has also been addressed, along with the partial introduction of vcard export capabilities.
<<lessmod_psldap implementation can also manage records through a Web interface, and authenticate against an LDAP server that restricts the user from reading the password and the implementation of Kerberos-based authentication to connect to the LDAP server itself.
Enhancements:
- This release provides AJAX functionality, allowing for the DSML form of the LDAP records to be browsed offline from either the organizational or management tree views.
- A minor issue with recognition of the search scope as defined in the URI has also been addressed, along with the partial introduction of vcard export capabilities.
Download (0.13MB)
Added: 2006-02-28 License: GPL (GNU General Public License) Price:
1333 downloads
Squirrelmail Outlook Skin Theme 1.0.3
Squirrelmail Outlook Skin Theme is based on the layout (visual interface) of the M$ Outlook 2003 over Squirrelmail (1.4.8). more>>
Squirrelmail Outlook Skin Theme is based on the layout (visual interface) of the M$ Outlook 2003 over Squirrelmail (1.4.8).
<<less Download (1.9MB)
Added: 2006-12-21 License: GPL (GNU General Public License) Price:
646 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 outlook ldap sync 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