[Date Prev][Date Next] [Chronological] [Thread] [Top]

Unavailable critical extension



Hi,

I'm trying to use the Outlook 2002 Address Book to search on my OpenLDAP Proxy Server.


## Test 1. ##
Outlook 2002 ---------------------------------------------------------------- Aphelion Directory
It works Fine!!!~~

## Test 2. ##
Outlook 2002 -------------------- OpenLdap Proxy --------------------- Aphelion Directory

==== slapd.conf ====================
include /PATH/etc/openldap/schema/core.schema    // core.schema was NOT modified
pidfile   /PATH/var/run/slapd.pid
argsfile /PATH/var/run/slapd.args
loglevel 256

database  ldap
suffix          "o=company"
uri              ldap://192.168.1.100:3333";
===================================

When I search display Name : aaa.......
======== OpenLdap Proxy Log ===============
Nov 24 16:02:47 Rathon2 slapd[15407]: [ID 365959 local4.debug] get_ssa: conn 2 unknown attribute type=displayName (17)
Nov 24 16:02:47 Rathon2 slapd[15407]: [ID 365959 local4.debug] get_ssa: conn 2 unknown attribute type=display-name (17)
Nov 24 16:02:47 Rathon2 slapd[15407]: [ID 998954 local4.debug] conn=2 op=2 SRCH base="o=company" scope=2 deref=3 filter="(&(|(?=undefined)(?=undefined)(cn=aaa*)))"
========================================

Then, Add  following sentence to "core.schema"
========================================
attributetype ( 2.5.4.55 NAME 'displayName'
        DESC 'RFC2256: name of DMD'
        SUP name )

attributetype ( 2.5.4.56 NAME 'display-Name'
        DESC 'RFC2256: name of DMD'
        SUP name )

objectclass ( 2.5.6.6 NAME 'person'
        DESC 'RFC2256: a person'
        SUP top STRUCTURAL
        MUST ( sn $ cn )
        MAY ( userPassword $ telephoneNumber $ seeAlso $ description $ displayName $ display-Name ) )
========================================

Next is openldap Proxy log After restarting OpenLdap Proxy.
=============== OpenLDAP Proxy LOG =========================================
Nov 24 16:04:32 Rathon2 slapd[15448]: [ID 998954 local4.debug] conn=0 op=2 SRCH base="ou=People,ou==EA=B0\220\354\202=AC=EC\233\220,o=Government of Korea,c=kr" scope=2 deref=3 filter="(&(|(displayName=aaa*)(display-Name=aaa*)
(cn=aaa*)))"
Nov 24 16:04:32 Rathon2 slapd[15448]: [ID 706578 local4.debug] conn=0 op=2 SRCH attr=cn commonName mail roleOccupant display-name displayname sn surname co organizationName o givenName legacyExchangeDN objectClass uid mailNickname title company physicalDeliveryOfficeName telephoneNumber
Nov 24 16:04:32 Rathon2 slapd[15448]: [ID 362707 local4.debug] conn=0 op=2 SEARCH RESULT tag=101 err=12 nentries=0 text=Unknown critical control
===========================================================================

And I've got a message from outlook 2002.... "Unavailable critical extension"

What am i doing wrong??


thanks