From: Chris R. <chr...@me...> - 2000-12-04 09:12:39
|
Brian Avis <bri...@se...> wrote: > I know that I can probably stuff my object class data and the > inetauthorized services into an array and pass it like this, > 'objectclass' => @objectclass Actually, you need to pass a reference to the array, not the array itself. 'objectclass' => \@objectclass Alternatively, 'objectclass' => [ 'inetOrgPerson', 'inetMailUser', 'person', 'imCalendarUser', 'inetSubscriber', 'inetMailRouting' ], which does the same thing without using an extra variable. Check out the perlref manual page, and/or the perlreftut manual page. You might also want to try this notation for your other attributes, even the ones that only have one value. eg 'imcalendaruserversion' => [ '1.0' ], Cheers, Chris |