[Tickets #3287] NEW: Driver for XAMS integration

bugs@bugs.horde.org bugs at bugs.horde.org
Tue Jan 17 14:28:59 PST 2006


DO NOT REPLY TO THIS MESSAGE. THIS EMAIL ADDRESS IS NOT MONITORED.

Ticket URL: http://bugs.horde.org/ticket/?id=3287
-----------------------------------------------------------------------
 Ticket             | 3287
 Created By         | j2 at mupp.net
 Summary            | Driver for XAMS integration
 Queue              | Passwd
 Version            | 3.0
 State              | New
 Priority           | 1. Low
 Type               | Enhancement
 Owners             | 
+New Attachment     | xams.php
-----------------------------------------------------------------------


j2 at mupp.net (2006-01-17 14:28) wrote:

Here is a driver for using passwd with XAMS 0.0.15 and a small readme.

All credit should go to Oliver Siegmar (Lead developer for the now
hibernating XAMS)

Here is a backends.php snippet 

//Note, the driver is only tested on XAMS 0.0.15
//The driver handles both normal accounts and unique user names
//Please verify that you are using _Full_ user name in the config for
passwd
//Change hostspec, username, password and database to match your XAMS
//You can find this info in your xams.conf
//Driver and config snippet by oliver.siegmar at xams.org
//Silly little commet for driver (and nagging Oliver to write the driver) by
j2 at mupp.net
//
$backends['xams'] = array (
    'name' => 'XAMS Server',
    'preferred' => '',
    'password policy' => array(
        'minLength' => 5,
        'maxLength' => 31,
        'maxSpace' => 0,
        'minUpper' => 1,
        'minLower' => 1,
        'minNumeric' => 1,
        'minSymbols' => 0
    ),
    'driver' => 'xams',
    'params' => array(
        'phptype'    => 'mysql',
        'hostspec'   => 'localhost',
        'username'   => 'xamsusername',
        'password'   => 'xamsusernamedbpassword',
        'encryption' => 'md5-hex',
        'database'   => 'xamsdatabasename',
        'show_encryption' => false
    )
);





More information about the bugs mailing list