You have to address the operationalAttributes explicit by their names,
and all the user-Attribute by '*':
Try:
$mesg = $ldap->search( ... ,
attrs => [
'*',
'createTimestamp',
'creatorsName',
'modifiersName',
'modifyTimestamp'
]
);
On 12 Apr 2010, at 06:21, William King wrote:
> Is there a way to get the internal attributes? such as for an
> inetOrgPerson entry I would want access to:
>
> createTimestamp
> creatorsName
> modifiersName
> modifyTimestamp
>
> These are available when using phpldapadmin and selecting internal
Is there a way to get the internal attributes? such as for an
inetOrgPerson entry I would want access to:
createTimestamp
creatorsName
modifiersName
modifyTimestamp
These are available when using phpldapadmin and selecting internal
attributes. Is it possible to expose these in perl?
-William Kin