From: Chris R. <Chr...@me...> - 2000-06-06 08:29:37
|
On Mon, 05 Jun 2000 14:03:53 EDT, Jim Harle wrote: > There are a variety of ways of doing this. My preference is > @base_attributes = ( > objectclass => 'minimalRadiusPerson', An addditional point no-one's noticed: You need to include minimalRadiusPerson's superclasses if you want to be really correct. It is probably just subclassed from top, but check your schema. objectclass => [ 'top', 'minimalRadiusPerson' ], Cheers, Chris |