From 97830cb0d3dcaf101a4882b8fb8f6a92f46f38c1 Mon Sep 17 00:00:00 2001 From: "scott%scott-macgregor.org" Date: Wed, 22 Feb 2006 21:42:30 +0000 Subject: [PATCH] Bug #323608 revert ldap schema's use of displayname back to cn like it was for 1.0 sr=dmose git-svn-id: svn://10.0.0.236/trunk@190887 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/mailnews/mailnews.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/mailnews/mailnews.js b/mozilla/mailnews/mailnews.js index 237b1f5a8ed..f3b2d6e74b5 100644 --- a/mozilla/mailnews/mailnews.js +++ b/mozilla/mailnews/mailnews.js @@ -284,7 +284,7 @@ pref("ldap_2.servers.history.isOffline", false); // default mapping of addressbook properties to ldap attributes pref("ldap_2.servers.default.attrmap.FirstName", "givenName"); pref("ldap_2.servers.default.attrmap.LastName", "sn,surname"); -pref("ldap_2.servers.default.attrmap.DisplayName", "displayName,cn,commonname"); +pref("ldap_2.servers.default.attrmap.DisplayName", "cn,commonname"); pref("ldap_2.servers.default.attrmap.NickName", "mozillaNickname,xmozillanickname"); pref("ldap_2.servers.default.attrmap.PrimaryEmail", "mail"); pref("ldap_2.servers.default.attrmap.SecondEmail", "mozillaSecondEmail,xmozillasecondemail");