[SCM] Samba Shared Repository - branch master updated - release-4-0-0alpha7-1798-g0299609

Andrew Tridgell tridge at samba.org
Tue May 26 04:19:06 GMT 2009


The branch, master has been updated
       via  02996093088a9244c44f46818ac093430d21a99c (commit)
       via  c80c3b5edd231ab919b2054e22a99ba28aa11eac (commit)
       via  95eeef91d3ed7daf8e19029eadcc610caf26db63 (commit)
       via  d402866e31b9455f8d330c0f7e3ed52cbeebcb24 (commit)
       via  ecdad56b6eedad4a4d8031477827c522cdf6d76e (commit)
       via  e15027155d3d880abde83124e252b3dd10a9aae4 (commit)
      from  6ef65389fd2f2bdcafe840e0cd0221bb9f26bdfc (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 02996093088a9244c44f46818ac093430d21a99c
Merge: c80c3b5edd231ab919b2054e22a99ba28aa11eac 6ef65389fd2f2bdcafe840e0cd0221bb9f26bdfc
Author: Andrew Tridgell <tridge at samba.org>
Date:   Tue May 26 14:18:16 2009 +1000

    Merge branch 'master' of ssh://git.samba.org/data/git/samba

commit c80c3b5edd231ab919b2054e22a99ba28aa11eac
Author: Andrew Kroeger <andrew at id10ts.net>
Date:   Sun May 24 03:37:37 2009 -0500

    s4:provision: Added ComPartitionSets entry.
    
    Without this entry, opening the COM+ tab under the properties of an OU within
    ADUC results in the following error:
    
    "Unable to retrieve all user properties, 0x80072030"

commit 95eeef91d3ed7daf8e19029eadcc610caf26db63
Author: Andrew Kroeger <andrew at id10ts.net>
Date:   Sun May 24 14:47:46 2009 -0500

    s4:Added Extended-Rights and subentries.
    
    Without these entries, using the 'Delegate Control' option in ADUC results in
    the following error message in the Delegation of Control Wizard:
    
    "The templates could not be applied.  One or more of the templates is not
    applicable.  Click Back and select different templates, and then try again."

commit d402866e31b9455f8d330c0f7e3ed52cbeebcb24
Author: Andrew Kroeger <andrew at id10ts.net>
Date:   Fri May 22 00:28:36 2009 -0500

    s4:provision: Update DisplaySpecifiers (#5139).
    
    The classDisplayName attribute controls the actual text displayed to the user
    for the top-level menus, so added it to the existing entries.
    
    The attributeDisplayNames attribute contains both the text displayed to the
    user and a mapping to the internal directory attribute name for the particular
    field, so added these to the existing entries as well.
    
    Added new entries as appropriate to properly complete all menus and labels
    within ADUC.

commit ecdad56b6eedad4a4d8031477827c522cdf6d76e
Merge: e15027155d3d880abde83124e252b3dd10a9aae4 714acfac013a46c3677c3eb72ad57db6d97c7d61
Author: Andrew Tridgell <tridge at samba.org>
Date:   Tue May 26 09:26:47 2009 +1000

    Merge branch 'master' of ssh://git.samba.org/data/git/samba

commit e15027155d3d880abde83124e252b3dd10a9aae4
Author: Andrew Tridgell <tridge at samba.org>
Date:   Tue May 26 09:24:37 2009 +1000

    added some more speed tests to tdbtool
    
    This adds 3 simple speed tests to tdbtool, for transaction store,
    store and fetch.
    
    On my laptop this shows transactions costing about 10ms

-----------------------------------------------------------------------

Summary of changes:
 lib/tdb/tools/tdbtool.c                    |   65 ++-
 source4/setup/display_specifiers.ldif      |  369 ++++++++++++
 source4/setup/provision.ldif               |    5 +
 source4/setup/provision_configuration.ldif |  881 ++++++++++++++++++++++++++++
 4 files changed, 1314 insertions(+), 6 deletions(-)


Changeset truncated at 500 lines:

diff --git a/lib/tdb/tools/tdbtool.c b/lib/tdb/tools/tdbtool.c
index b4ec095..3220e47 100644
--- a/lib/tdb/tools/tdbtool.c
+++ b/lib/tdb/tools/tdbtool.c
@@ -392,15 +392,68 @@ static void speed_tdb(const char *tlimit)
 {
 	unsigned timelimit = tlimit?atoi(tlimit):0;
 	double t;
-	int ops=0;
-	if (timelimit == 0) timelimit = 10;
+	int ops;
+	if (timelimit == 0) timelimit = 5;
+
+	ops = 0;
+	printf("Testing store speed for %u seconds\n", timelimit);
+	_start_timer();
+	do {
+		long int r = random();
+		TDB_DATA key, dbuf;
+		key.dptr = "store test";
+		key.dsize = strlen(key.dptr);
+		dbuf.dptr = (unsigned char *)&r;
+		dbuf.dsize = sizeof(r);
+		tdb_store(tdb, key, dbuf, TDB_REPLACE);
+		t = _end_timer();
+		ops++;
+	} while (t < timelimit);
+	printf("%10.3f ops/sec\n", ops/t);
+
+	ops = 0;
+	printf("Testing fetch speed for %u seconds\n", timelimit);
+	_start_timer();
+	do {
+		long int r = random();
+		TDB_DATA key, dbuf;
+		key.dptr = "store test";
+		key.dsize = strlen(key.dptr);
+		dbuf.dptr = (unsigned char *)&r;
+		dbuf.dsize = sizeof(r);
+		tdb_fetch(tdb, key);
+		t = _end_timer();
+		ops++;
+	} while (t < timelimit);
+	printf("%10.3f ops/sec\n", ops/t);
+
+	ops = 0;
+	printf("Testing transaction speed for %u seconds\n", timelimit);
+	_start_timer();
+	do {
+		long int r = random();
+		TDB_DATA key, dbuf;
+		key.dptr = "transaction test";
+		key.dsize = strlen(key.dptr);
+		dbuf.dptr = (unsigned char *)&r;
+		dbuf.dsize = sizeof(r);
+		tdb_transaction_start(tdb);
+		tdb_store(tdb, key, dbuf, TDB_REPLACE);
+		tdb_transaction_commit(tdb);
+		t = _end_timer();
+		ops++;
+	} while (t < timelimit);
+	printf("%10.3f ops/sec\n", ops/t);
+
+	ops = 0;
 	printf("Testing traverse speed for %u seconds\n", timelimit);
 	_start_timer();
-	while ((t=_end_timer()) < timelimit) {
+	do {
 		tdb_traverse(tdb, traverse_fn, NULL);
-		printf("%10.3f ops/sec\r", (++ops)/t);
-	}
-	printf("\n");
+		t = _end_timer();
+		ops++;
+	} while (t < timelimit);
+	printf("%10.3f ops/sec\n", ops/t);
 }
 
 static void toggle_mmap(void)
diff --git a/source4/setup/display_specifiers.ldif b/source4/setup/display_specifiers.ldif
index 7d66332..9ec3abc 100644
--- a/source4/setup/display_specifiers.ldif
+++ b/source4/setup/display_specifiers.ldif
@@ -11,6 +11,7 @@ dn: CN=user-Display,CN=409,CN=DisplaySpecifiers,${CONFIGDN}
 objectClass: top
 objectClass: displaySpecifier
 cn: user-Display
+classDisplayName: User
 contextMenu: 0,{62AE1F9A-126A-11D0-A14B-0800361B1103}
 adminPropertyPages: 9,{FA3E1D55-16DF-446d-872E-BD04D4F39C93}
 adminPropertyPages: 8,{0910dd01-df8c-11d1-ae27-00c04fa35813}
@@ -24,11 +25,67 @@ shellPropertyPages: 2,{dde2c5e9-c8ae-11d0-bcdb-00c04fd8d5b6}
 shellPropertyPages: 1,{f5d121ed-c8ac-11d0-bcdb-00c04fd8d5b6}
 adminContextMenu: 1,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
 adminMultiselectPropertyPages: 1,{50d30564-9911-11d1-b9af-00c04fd8d5b0}
+attributeDisplayNames: assistant,Assistant
+attributeDisplayNames: c,Country Abbreviation
+attributeDisplayNames: cn,Name
+attributeDisplayNames: co,Country
+attributeDisplayNames: comment,Comment
+attributeDisplayNames: company,Company
+attributeDisplayNames: department,Department
+attributeDisplayNames: description,Description
+attributeDisplayNames: directReports,Direct Reports
+attributeDisplayNames: displayName,Display Name
+attributeDisplayNames: distinguishedName,X500 Distinguished Name
+attributeDisplayNames: division,Division
+attributeDisplayNames: employeeID,Employee ID
+attributeDisplayNames: facsimileTelephoneNumber,Fax Number
+attributeDisplayNames: generationQualifier,Generational Suffix
+attributeDisplayNames: givenName,First Name
+attributeDisplayNames: homeDirectory,Home Folder
+attributeDisplayNames: homeDrive,Home Drive
+attributeDisplayNames: homePhone,Home Phone
+attributeDisplayNames: homePostalAddress,Home Address
+attributeDisplayNames: info,Notes
+attributeDisplayNames: initials,Initials
+attributeDisplayNames: internationalISDNNumber,International ISDN Number (Others)
+attributeDisplayNames: ipPhone,IP Phone Number
+attributeDisplayNames: l,City
+attributeDisplayNames: mail,E-Mail Address
+attributeDisplayNames: manager,Manager
+attributeDisplayNames: memberOf,Member Of
+attributeDisplayNames: middleName,Middle Name
+attributeDisplayNames: mobile,Mobile Number
+attributeDisplayNames: otherFacsimileTelephoneNumber,Fax Number (Others)
+attributeDisplayNames: otherHomePhone,Home Phone Number (Others)
+attributeDisplayNames: otherIpPhone,IP Phone Number (Others)
+attributeDisplayNames: otherMailbox,E-Mail Address (Others)
+attributeDisplayNames: otherMobile,Mobile Number (Others)
+attributeDisplayNames: otherPager,Pager Number (Others)
+attributeDisplayNames: otherTelephone,Phone Number (Others)
+attributeDisplayNames: pager,Pager Number
+attributeDisplayNames: personalTitle,Title
+attributeDisplayNames: physicalDeliveryOfficeName,Office Location
+attributeDisplayNames: postalCode,ZIP/Postal Code
+attributeDisplayNames: postOfficeBox,Post Office Box
+attributeDisplayNames: primaryInternationalISDNNumber,International ISDN Number
+attributeDisplayNames: primaryTelexNumber,Telex Number
+attributeDisplayNames: samAccountName,Logon Name (pre-Windows 2000)
+attributeDisplayNames: sn,Last Name
+attributeDisplayNames: streetAddress,Street Address
+attributeDisplayNames: st,State/Province
+attributeDisplayNames: telephoneNumber,Telephone Number
+attributeDisplayNames: telexNumber,Telex Number (Others)
+attributeDisplayNames: title,Job Title
+attributeDisplayNames: url,Web Page Address (Others)
+attributeDisplayNames: userPrincipalName,Logon Name
+attributeDisplayNames: userWorkstations,Logon Workstations
+attributeDisplayNames: wWWHomePage,Web Page Address
 
 dn: CN=group-Display,CN=409,CN=DisplaySpecifiers,${CONFIGDN}
 objectClass: top
 objectClass: displaySpecifier
 cn: group-Display
+classDisplayName: Group
 contextMenu: 0,{62AE1F9A-126A-11D0-A14B-0800361B1103}
 adminPropertyPages: 4,{4E40F770-369C-11d0-8922-00A024AB2DBB}
 adminPropertyPages: 3,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
@@ -37,11 +94,24 @@ adminPropertyPages: 1,{6dfe6489-a212-11d0-bcd5-00c04fd8d5b6}
 shellPropertyPages: 2,{dde2c5e9-c8ae-11d0-bcdb-00c04fd8d5b6}
 shellPropertyPages: 1,{f5d121ee-c8ac-11d0-bcdb-00c04fd8d5b6}
 adminContextMenu: 1,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
+attributeDisplayNames: c,Country Abbreviation
+attributeDisplayNames: cn,Name
+attributeDisplayNames: description,Description
+attributeDisplayNames: distinguishedName,X500 Distinguished Name
+attributeDisplayNames: info,Notes
+attributeDisplayNames: l,City
+attributeDisplayNames: managedBy,Managed By
+attributeDisplayNames: member,Members
+attributeDisplayNames: physicalDeliveryOfficeName,Office Location
+attributeDisplayNames: samAccountName,Group name (pre-Windows 2000)
+attributeDisplayNames: url,Web Page Address (Others)
+attributeDisplayNames: wWWHomePage,Web Page Address
 
 dn: CN=domainDNS-Display,CN=409,CN=DisplaySpecifiers,${CONFIGDN}
 objectClass: top
 objectClass: displaySpecifier
 cn: domainDNS-Display
+classDisplayName: Domain
 name: domainDNS-Display
 adminPropertyPages: 5,{4E40F770-369C-11d0-8922-00A024AB2DBB}
 adminPropertyPages: 4,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
@@ -51,11 +121,14 @@ shellPropertyPages: 2,{dde2c5e9-c8ae-11d0-bcdb-00c04fd8d5b6}
 shellPropertyPages: 1,{f5d121ef-c8ac-11d0-bcdb-00c04fd8d5b6}
 adminContextMenu: 2,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
 adminContextMenu: 1,{6BA3F852-23C6-11D1-B91F-00A0C9A06D2D}
+attributeDisplayNames: dc,Name
+attributeDisplayNames: description,Description
 
 dn: CN=computer-Display,CN=409,CN=DisplaySpecifiers,${CONFIGDN}
 objectClass: top
 objectClass: displaySpecifier
 cn: computer-Display
+classDisplayName: Computer
 contextMenu: 0,{62AE1F9A-126A-11D0-A14B-0800361B1103}
 adminPropertyPages: 10,{0F65B1BF-740F-11d1-BBE6-0060081692B3}
 adminPropertyPages: 7,{B52C1E50-1DD2-11D1-BC43-00C04FC31FD3}
@@ -68,11 +141,18 @@ shellPropertyPages: 2,{dde2c5e9-c8ae-11d0-bcdb-00c04fd8d5b6}
 shellPropertyPages: 1,{f5d121f4-c8ac-11d0-bcdb-00c04fd8d5b6}
 adminContextMenu: 1,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
 createWizardExt: 1,{D6D8C25A-4E83-11d2-8424-00C04FA372D4}
+attributeDisplayNames: cn,Name
+attributeDisplayNames: description,Description
+attributeDisplayNames: managedBy,Managed By
+attributeDisplayNames: operatingSystem,Operating System
+attributeDisplayNames: operatingSystemVersion,Operating System Version
+attributeDisplayNames: samAccountName,Computer name (pre-Windows 2000)
 
 dn: CN=organizationalUnit-Display,CN=409,CN=DisplaySpecifiers,${CONFIGDN}
 objectClass: top
 objectClass: displaySpecifier
 cn: organizationalUnit-Display
+classDisplayName: Organizational Unit
 contextMenu: 0,{62AE1F9A-126A-11D0-A14B-0800361B1103}
 adminPropertyPages: 6,{FA3E1D55-16DF-446d-872E-BD04D4F39C93}
 adminPropertyPages: 5,{4E40F770-369C-11d0-8922-00A024AB2DBB}
@@ -83,11 +163,15 @@ shellPropertyPages: 2,{dde2c5e9-c8ae-11d0-bcdb-00c04fd8d5b6}
 shellPropertyPages: 1,{f2c3faae-c8ac-11d0-bcdb-00c04fd8d5b6}
 adminContextMenu: 2,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
 adminContextMenu: 1,{6BA3F852-23C6-11D1-B91F-00A0C9A06D2D}
+attributeDisplayNames: description,Description
+attributeDisplayNames: managedBy,Managed By
+attributeDisplayNames: ou,Name
 
 dn: CN=container-Display,CN=409,CN=DisplaySpecifiers,${CONFIGDN}
 objectClass: top
 objectClass: displaySpecifier
 cn: container-Display
+classDisplayName: Container
 contextMenu: 0,{62AE1F9A-126A-11D0-A14B-0800361B1103}
 adminPropertyPages: 3,{4E40F770-369C-11d0-8922-00A024AB2DBB}
 adminPropertyPages: 2,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
@@ -97,6 +181,289 @@ adminContextMenu: 4,{AB790AA1-CDC1-478a-9351-B2E05CFCAD09}
 adminContextMenu: 3,{EEBD2F15-87EE-4F93-856F-6AD7E31787B3}
 adminContextMenu: 2,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
 adminContextMenu: 1,{6BA3F852-23C6-11D1-B91F-00A0C9A06D2D}
+attributeDisplayNames: cn,Name
+attributeDisplayNames: description,Description
+
+dn: CN=contact-Display,CN=409,CN=DisplaySpecifiers,${CONFIGDN}
+objectClass: top
+objectClass: displaySpecifier
+cn: contact-Display
+classDisplayName: Contact
+contextMenu: 0,{62AE1F9A-126A-11D0-A14B-0800361B1103}
+adminPropertyPages: 4,{4E40F770-369C-11d0-8922-00A024AB2DBB}
+adminPropertyPages: 3,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
+adminPropertyPages: 1,{c5f1645c-c8c9-11d0-bcdb-00c04fd8d5b6}
+shellPropertyPages: 2,{dde2c5e9-c8ae-11d0-bcdb-00c04fd8d5b6}
+shellPropertyPages: 1,{f5d121f0-c8ac-11d0-bcdb-00c04fd8d5b6}
+adminContextMenu: 1,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
+attributeDisplayNames: assistant,Assistant
+attributeDisplayNames: c,Country Abbreviation
+attributeDisplayNames: cn,Name
+attributeDisplayNames: co,Country
+attributeDisplayNames: comment,Comment
+attributeDisplayNames: company,Company
+attributeDisplayNames: department,Department
+attributeDisplayNames: description,Description
+attributeDisplayNames: directReports,Direct Reports
+attributeDisplayNames: displayName,Display Name
+attributeDisplayNames: distinguishedName,X500 Distinguished Name
+attributeDisplayNames: division,Division
+attributeDisplayNames: employeeID,Employee ID
+attributeDisplayNames: facsimileTelephoneNumber,Fax Number
+attributeDisplayNames: generationQualifier,Generational Suffix
+attributeDisplayNames: givenName,First Name
+attributeDisplayNames: homePhone,Home Phone
+attributeDisplayNames: homePostalAddress,Home Address
+attributeDisplayNames: info,Notes
+attributeDisplayNames: initials,Initials
+attributeDisplayNames: internationalISDNNumber,International ISDN Number (Others)
+attributeDisplayNames: ipPhone,IP Phone Number
+attributeDisplayNames: l,City
+attributeDisplayNames: mail,E-Mail Address
+attributeDisplayNames: manager,Manager
+attributeDisplayNames: memberOf,Member Of
+attributeDisplayNames: middleName,Middle Name
+attributeDisplayNames: mobile,Mobile Number
+attributeDisplayNames: otherFacsimileTelephoneNumber,Fax Number (Others)
+attributeDisplayNames: otherHomePhone,Home Phone Number (Others)
+attributeDisplayNames: otherIpPhone,IP Phone Number (Others)
+attributeDisplayNames: otherMailbox,E-Mail Address (Others)
+attributeDisplayNames: otherMobile,Mobile Number (Others)
+attributeDisplayNames: otherPager,Pager Number (Others)
+attributeDisplayNames: otherTelephone,Phone Number (Others)
+attributeDisplayNames: pager,Pager Number
+attributeDisplayNames: personalTitle,Title
+attributeDisplayNames: physicalDeliveryOfficeName,Office Location
+attributeDisplayNames: postalCode,ZIP/Postal Code
+attributeDisplayNames: postOfficeBox,Post Office Box
+attributeDisplayNames: primaryInternationalISDNNumber,International ISDN Number
+attributeDisplayNames: primaryTelexNumber,Telex Number
+attributeDisplayNames: sn,Last Name
+attributeDisplayNames: streetAddress,Street Address
+attributeDisplayNames: st,State/Province
+attributeDisplayNames: telephoneNumber,Telephone Number
+attributeDisplayNames: telexNumber,Telex Number (Others)
+attributeDisplayNames: title,Job Title
+attributeDisplayNames: url,Web Page Address (Others)
+attributeDisplayNames: wWWHomePage,Web Page Address
+
+dn: CN=foreignSecurityPrincipal-Display,CN=409,CN=DisplaySpecifiers,${CONFIGDN}
+objectClass: top
+objectClass: displaySpecifier
+cn: foreignSecurityPrincipal-Display
+classDisplayName: Foreign Security Principal
+adminPropertyPages: 3,{4E40F770-369C-11d0-8922-00A024AB2DBB}
+adminPropertyPages: 2,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
+adminPropertyPages: 1,{6dfe6486-a212-11d0-bcd5-00c04fd8d5b6}
+adminContextMenu: 1,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
+attributeDisplayNames: cn,Name
+attributeDisplayNames: description,Description
+
+dn: CN=inetOrgPerson-Display,CN=409,CN=DisplaySpecifiers,${CONFIGDN}
+objectClass: top
+objectClass: displaySpecifier
+cn: inetOrgPerson-Display
+classDisplayName: InetOrgPerson
+contextMenu: 0,{62AE1F9A-126A-11D0-A14B-0800361B1103}
+adminPropertyPages: 1,{6dfe6485-a212-11d0-bcd5-00c04fd8d5b6}
+adminPropertyPages: 3,{B52C1E50-1DD2-11D1-BC43-00C04FC31FD3}
+adminPropertyPages: 4,{FD57D295-4FD9-11D1-854E-00C04FC31FD3}
+adminPropertyPages: 5,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
+adminPropertyPages: 6,{4E40F770-369C-11d0-8922-00A024AB2DBB}
+adminPropertyPages: 7,{8c5b1b50-d46e-11d1-8091-00a024c48131}
+adminPropertyPages: 8,{0910dd01-df8c-11d1-ae27-00c04fa35813}
+adminPropertyPages: 9,{FA3E1D55-16DF-446D-872E-BD04D4F39C93}
+shellPropertyPages: 1,{f5d121ed-c8ac-11d0-bcdb-00c04fd8d5b6}
+shellPropertyPages: 2,{dde2c5e9-c8ae-11d0-bcdb-00c04fd8d5b6}
+adminContextMenu: 1,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
+attributeDisplayNames: assistant,Assistant
+attributeDisplayNames: cn,Name
+attributeDisplayNames: c,Country Abbreviation
+attributeDisplayNames: co,Country
+attributeDisplayNames: comment,Comment
+attributeDisplayNames: company,Company
+attributeDisplayNames: department,Department
+attributeDisplayNames: description,Description
+attributeDisplayNames: directReports,Direct Reports
+attributeDisplayNames: distinguishedName,X500 Distinguished Name
+attributeDisplayNames: division,Division
+attributeDisplayNames: employeeID,Employee ID
+attributeDisplayNames: facsimileTelephoneNumber,Fax Number
+attributeDisplayNames: generationQualifier,Generational Suffix
+attributeDisplayNames: givenName,First Name
+attributeDisplayNames: homeDirectory,Home Folder
+attributeDisplayNames: homeDrive,Home Drive
+attributeDisplayNames: homePhone,Home Phone
+attributeDisplayNames: homePostalAddress,Home Address
+attributeDisplayNames: initials,Initials
+attributeDisplayNames: internationalISDNNumber,International ISDN Number (Others)
+attributeDisplayNames: ipPhone,IP Phone Number
+attributeDisplayNames: l,City
+attributeDisplayNames: mail,E-Mail Address
+attributeDisplayNames: manager,Manager
+attributeDisplayNames: memberOf,Member Of
+attributeDisplayNames: middleName,Middle Name
+attributeDisplayNames: mobile,Mobile Number
+attributeDisplayNames: info,Notes
+attributeDisplayNames: otherFacsimileTelephoneNumber,Fax Number (Others)
+attributeDisplayNames: otherHomePhone,Home Phone (Others)
+attributeDisplayNames: otherIpPhone,IP Phone Number (Others)
+attributeDisplayNames: otherMailbox,E-Mail Address (Others)
+attributeDisplayNames: otherMobile,Mobile Number (Others)
+attributeDisplayNames: otherPager,Pager Number (Others)
+attributeDisplayNames: otherTelephone,Phone Number (Others)
+attributeDisplayNames: pager,Pager Number
+attributeDisplayNames: personalTitle,Title
+attributeDisplayNames: physicalDeliveryOfficeName,Office Location
+attributeDisplayNames: postalCode,ZIP/Postal Code
+attributeDisplayNames: postOfficeBox,Post Office Box
+attributeDisplayNames: primaryInternationalISDNNumber,International ISDN Number
+attributeDisplayNames: primaryTelexNumber,Telex Number
+attributeDisplayNames: samAccountName,Logon Name (pre-Windows 2000)
+attributeDisplayNames: sn,Last Name
+attributeDisplayNames: st,State/Province
+attributeDisplayNames: streetAddress,Street Address
+attributeDisplayNames: telephoneNumber,Telephone Number
+attributeDisplayNames: telexNumber,Telex Number (Others)
+attributeDisplayNames: title,Job Title
+attributeDisplayNames: url,Web Page Address (Others)
+attributeDisplayNames: displayName,Display Name
+attributeDisplayNames: userWorkstations,Logon Workstations
+attributeDisplayNames: userPrincipalName,Logon Name
+attributeDisplayNames: wWWHomePage,Web Page Address
+adminMultiselectPropertyPages: 1,{50D30564-9911-11D1-B9AF-00C04FD8D5B0}
+
+dn: CN=msMQ-Custom-Recipient-Display,CN=409,CN=DisplaySpecifiers,${CONFIGDN}
+objectClass: top
+objectClass: displaySpecifier
+cn: msMQ-Custom-Recipient-Display
+classDisplayName: MSMQ Queue Alias
+creationWizard: {9e4ab987-3cca-4de0-ae36-3d163df44d36}
+adminPropertyPages: 2,{4E40F770-369C-11d0-8922-00A024AB2DBB}
+adminPropertyPages: 1,{9e4ab987-3cca-4de0-ae36-3d163df44d36}
+adminContextMenu: 1,{9e4ab987-3cca-4de0-ae36-3d163df44d36}
+attributeDisplayNames: cn,Name
+attributeDisplayNames: description,Description
+attributeDisplayNames: msMQ-Recipient-FormatName,Format Name
+
+dn: CN=msMQ-Group-Display,CN=409,CN=DisplaySpecifiers,${CONFIGDN}
+objectClass: top
+objectClass: displaySpecifier
+cn: msMQ-Group-Display
+classDisplayName: MSMQ Group
+adminPropertyPages: 1,{7e93454a-976a-4228-90f1-f7648010b8e6}
+adminContextMenu: 1,{7e93454a-976a-4228-90f1-f7648010b8e6}
+attributeDisplayNames: cn,Name
+attributeDisplayNames: description,Description
+attributeDisplayNames: member,Member Queues
+
+dn: CN=pKICertificateTemplate-Display,CN=409,CN=DisplaySpecifiers,${CONFIGDN}
+objectClass: top
+objectClass: displaySpecifier
+cn: pKICertificateTemplate-Display
+classDisplayName: Certificate Template
+contextMenu: 0,{11BDCE06-D55C-44e9-BC0B-8655F89E8CC5}
+adminPropertyPages: 2,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
+adminPropertyPages: 1,{11BDCE06-D55C-44e9-BC0B-8655F89E8CC5}
+shellPropertyPages: 1,{11BDCE06-D55C-44e9-BC0B-8655F89E8CC5}
+adminContextMenu: 0,{11BDCE06-D55C-44e9-BC0B-8655F89E8CC5}
+attributeDisplayNames: cn,Name
+attributeDisplayNames: description,Description
+
+dn: CN=printQueue-Display,CN=409,CN=DisplaySpecifiers,${CONFIGDN}
+objectClass: top
+objectClass: displaySpecifier
+cn: printQueue-Display
+classDisplayName: Printer
+contextMenu: 0,{62AE1F9A-126A-11D0-A14B-0800361B1103}
+adminPropertyPages: 3,{4E40F770-369C-11d0-8922-00A024AB2DBB}
+adminPropertyPages: 2,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
+adminPropertyPages: 1,{6dfe6493-a212-11d0-bcd5-00c04fd8d5b6}
+shellPropertyPages: 2,{dde2c5e9-c8ae-11d0-bcdb-00c04fd8d5b6}
+shellPropertyPages: 1,{f5d121f5-c8ac-11d0-bcdb-00c04fd8d5b6}
+adminContextMenu: 1,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
+attributeDisplayNames: assetNumber,Asset Number
+attributeDisplayNames: cn,Directory Service Name
+attributeDisplayNames: contactName,Contact
+attributeDisplayNames: description,Comment
+attributeDisplayNames: driverName,Model
+attributeDisplayNames: location,Location
+attributeDisplayNames: portName,Port
+attributeDisplayNames: printBinNames,Input Trays
+attributeDisplayNames: printCollate,Supports Collation
+attributeDisplayNames: printColor,Supports Color Printing
+attributeDisplayNames: printDuplexSupported,Supports Double-sided Printing
+attributeDisplayNames: printerName,Name
+attributeDisplayNames: printLanguage,Printer Language
+attributeDisplayNames: printMaxResolutionSupported,Maximum Resolution
+attributeDisplayNames: printMediaReady,Paper Available
+attributeDisplayNames: printMediaSupported,Paper Types Supported
+attributeDisplayNames: printMemory,Installed Memory
+attributeDisplayNames: printOwner,Owner Name
+attributeDisplayNames: printPagesPerMinute,Pages per Minute
+attributeDisplayNames: printRate,Speed
+attributeDisplayNames: printRateUnit,Speed Units
+attributeDisplayNames: printShareName,Share Name
+attributeDisplayNames: printStaplingSupported,Supports Stapling
+attributeDisplayNames: serverName,Server Name
+attributeDisplayNames: uNCName,Network Name
+attributeDisplayNames: url,Web Page Address
+attributeDisplayNames: versionNumber,Object Version
+
+dn: CN=remoteStorageServicePoint-Display,CN=409,CN=DisplaySpecifiers,${CONFIGDN}
+objectClass: top
+objectClass: displaySpecifier
+cn: remoteStorageServicePoint-Display
+classDisplayName: Remote Storage Service
+adminPropertyPages: 3,{4E40F770-369C-11d0-8922-00A024AB2DBB}
+adminPropertyPages: 2,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
+adminPropertyPages: 1,{6384e23e-736d-11d1-bd0d-00c04fd8d5b6}
+adminContextMenu: 0,&Manage...,RsAdmin.msc
+attributeDisplayNames: cn,Name
+
+dn: CN=rpcContainer-Display,CN=409,CN=DisplaySpecifiers,${CONFIGDN}
+objectClass: top
+objectClass: displaySpecifier
+cn: rpcContainer-Display
+classDisplayName: RPC Services
+contextMenu: 0,{62AE1F9A-126A-11D0-A14B-0800361B1103}
+adminPropertyPages: 3,{4E40F770-369C-11d0-8922-00A024AB2DBB}
+adminPropertyPages: 2,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
+adminPropertyPages: 1,{50d30572-9911-11d1-b9af-00c04fd8d5b0}
+adminContextMenu: 1,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
+attributeDisplayNames: cn,Name
+attributeDisplayNames: description,Description
+
+dn: CN=trustedDomain-Display,CN=409,CN=DisplaySpecifiers,${CONFIGDN}
+objectClass: top
+objectClass: displaySpecifier
+cn: trustedDomain-Display
+classDisplayName: Trusted Domain
+adminPropertyPages: 3,{4E40F770-369C-11d0-8922-00A024AB2DBB}
+adminPropertyPages: 2,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
+adminPropertyPages: 1,{9da6fd67-c63b-11d0-b94d-00c04fd8d5b0}
+adminContextMenu: 1,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}


-- 
Samba Shared Repository


More information about the samba-cvs mailing list