[Koha-bugs] [Bug 1087] New: Member info from LDAP stuff?

bugzilla-daemon at wilbur.katipo.co.nz bugzilla-daemon at wilbur.katipo.co.nz
Tue May 30 20:31:23 CEST 2006


http://bugs.koha.org/cgi-bin/bugzilla/show_bug.cgi?id=1087

           Summary: Member info from LDAP stuff?
           Product: Koha
           Version: 2.2.5
          Platform: PC
        OS/Version: All
            Status: NEW
          Severity: enhancement
          Priority: P2
         Component: Members
        AssignedTo: chris at katipo.co.nz
        ReportedBy: mhafen at i.washk12.org
         QAContact: koha-bugs at nongnu.org


I've put together some stuff to link koha members to a LDAP.  I haven't got all
the functions filled out because our installation doesn't require them.

Also a database table will need to be added for this to work the way I have it.
 A table to translate LDAP attribs to Koha database fields.  Like this:

CREATE TABLE `borrowers_ldap_structure` (
  `ldapid` int(8) NOT NULL auto_increment,
  `liblibrarian` varchar(255) NOT NULL default '',
  `kohafield` varchar(40) default NULL,
  `ldapfield` varchar(255) default NULL,
  `regex` varchar(40) default NULL,
  PRIMARY KEY  (`ldapid`),
  KEY `KohaKey` (`kohafield`),
  KEY `LdapKey` (`ldapfield`)
);



This may be useful for you.




------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.





More information about the Koha-bugs mailing list