Hi
I need to compare the Active directory user attribute "whenChanged" with the zimbra one, In ldap browser I can see modifyTimestamp, but I wasn't able to find
the attribute to query from perl can you help me ?
thank you
Bye
Hi
I need to compare the Active directory user attribute "whenChanged" with the zimbra one, In ldap browser I can see modifyTimestamp, but I wasn't able to find
the attribute to query from perl can you help me ?
thank you
Bye
Last edited by lfasci; 09-13-2006 at 10:30 AM. Reason: errors
How are you requesting the attributes from Perl? modifyTimestamp is a "operational attribute" and won't be returned unless you either explicitely ask for it, or request the special "+" attribute, which will return operational attributes. If you want all attributes, you'll need + and *. For example:
The man page on ldapsearch explains this behavior.Code:ldapsearch -LLL -x -D uid=zimbra,cn=admins,cn=zimbra -w zimbra '(objectclass=*)' + '*'
I have somehow similar problem:
I am trying to get the modifiedTimestamp (whenChanged) using zmprov.
I try it like that:
Code:zmprov ga evsta@domain.eu whenChangedand I get this:Code:zmprov ga evsta@domain.eu modifiedTimestamp
when I ask for something 'normal'Code:# name evsta@domain.eulike sn it works fine.
Is it possible to get this attribute using zmprov?
There are currently 1 users browsing this thread. (0 members and 1 guests)