atom feed23 messages in org.apache.directory.usersRe: adding schema
FromSent OnAttachments
Pierre SmitsMay 8, 2008 6:20 am 
Jeroen VriesmanMay 8, 2008 6:27 am 
Alex KarasuluMay 8, 2008 7:00 am 
Jeroen VriesmanMay 8, 2008 7:04 am 
Pierre SmitsMay 8, 2008 8:19 am 
Alex KarasuluMay 8, 2008 2:40 pm 
Pierre SmitsMay 8, 2008 3:21 pm 
Emmanuel LecharnyMay 8, 2008 4:15 pm 
Stefan SeelmannMay 8, 2008 10:39 pm 
Emmanuel LecharnyMay 8, 2008 11:02 pm 
Jeroen VriesmanMay 9, 2008 12:48 am 
Pierre SmitsMay 9, 2008 2:09 am 
Jeroen VriesmanMay 9, 2008 2:16 am 
Alex KarasuluMay 9, 2008 2:35 am 
Jeroen VriesmanMay 9, 2008 4:20 am 
Pierre SmitsMay 9, 2008 5:24 am 
Jeroen VriesmanMay 9, 2008 5:29 am 
Pierre SmitsMay 9, 2008 5:32 am 
Pierre SmitsMay 9, 2008 5:40 am 
Alex KarasuluMay 9, 2008 11:13 am 
Alex KarasuluMay 9, 2008 11:14 am 
Emmanuel LecharnyMay 9, 2008 1:47 pm 
Alex KarasuluMay 9, 2008 2:07 pm 
Subject:Re: adding schema
From:Emmanuel Lecharny (elec@apache.org)
Date:May 9, 2008 1:47:56 pm
List:org.apache.directory.users

Jeroen Vriesman wrote:

Ok, I can import now,

I also noticed that importing: objectclass ( 1.3.6.1.4.1.17416.0.255.0.14 NAME 'hivosMailAccount' SUP top AUXILIARY DESC 'Mail account object as used by Hivos' MUST ( mail $ homeDirectory $ mailbox $ userPassword ) MAY ( quota $ subscribeToSharedFolder $ isSharedFolder $ hivosIsIn $ horoAanwezig $ horoInDienst $ horoThuis ) )

Did not work, it compained about the DESC line, to make it work I had to change it to: objectclass ( 1.3.6.1.4.1.17416.0.255.0.14 NAME 'hivosMailAccount' DESC 'Mail account object as used by Hivos' SUP top AUXILIARY MUST ( mail $ homeDirectory $ mailbox $ userPassword ) MAY ( quota $ subscribeToSharedFolder $ isSharedFolder $ hivosIsIn $ horoAanwezig $ horoInDienst $ horoThuis ) )

It seems to be very strich about the order, is this also in the protocol specification?

This is not in the protocol spec, but this is in RFC 4512, par. 4.1.1 :

ObjectClassDescription = LPAREN WSP numericoid ; object identifier [ SP "NAME" SP qdescrs ] ; short names (descriptors) [ SP "DESC" SP qdstring ] ; description [ SP "OBSOLETE" ] ; not active [ SP "SUP" SP oids ] ; superior object classes [ SP kind ] ; kind of class [ SP "*MUST*" SP oids ] ; attribute types [ SP "*MAY*" SP oids ] ; attribute types extensions WSP RPAREN

A little bit strict, if you want my opinion...