LDAP Admin - Addressbook EntryAddressbook Entry by Tihomir Karlovic
ver 1.0Sample Addressbook Entry
<template>
<name>Addressbook Entry</name>
<description>Sample Addressbook Entry</description>
<author>Tihomir Karlovic</author>
<version>1.0</version>
<email>tk1065@users.sourceforge.net</email>
<website>ldapadmin.sf.net</website>
<rdn>cn</rdn>
<extends>user</extends>
<attribute>
<name>objectclass</name>
<value>top</value>
<value>inetOrgPerson</value>
</attribute>
<attribute type="text">
<name>givenName</name>
</attribute>
<attribute type="text">
<name>sn</name>
</attribute>
<attribute type="text">
<name>cn</name>
<value>%givenName%.%sn%</value>
</attribute>
<attribute type="text">
<name>title</name>
<control type="combo">
<items>
<item>Vice President</item>
<item>Administrator</item>
<item>Product Manager</item>
</items>
</control>
</attribute>
<attribute type="text">
<name>l</name>
<description>City</description>
</attribute>
<attribute type="text">
<name>o</name>
<description>Organization</description>
</attribute>
<attribute type="text">
<name>postalCode</name>
</attribute>
<attribute type="text">
<name>street</name>
</attribute>
<attribute type="text">
<name>telephoneNumber</name>
</attribute>
<attribute type="text">
<name>mail</name>
<value>%cn%@%o%</value>
<control type="grid"/>
</attribute>
</template>
|