mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-05 16:35:10 +00:00
Monotone-Parent: 356263e44ccecc6b46fd886306e8b6e2273c29a6
Monotone-Revision: dfabbf3e9d4598beba86c88fa7cd60b04d540e54 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-10-23T17:46:51 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
2007-10-23 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* SoObjects/Contacts/SOGoContactLDAPFolder.m: if "displayName" is
|
||||
empty, use "c_cn" instead.
|
||||
|
||||
* SoObjects/Mailer/SOGoMailAccount.m ([SOGoMailAccount -inboxFolderInContext:_ctx])
|
||||
([SOGoMailAccount -draftsFolderInContext:_ctx])
|
||||
([SOGoMailAccount -sentFolderInContext:_ctx]): no longer make use
|
||||
|
||||
@@ -161,10 +161,11 @@
|
||||
forKey: @"c_name"];
|
||||
|
||||
data = [oldRecord objectForKey: @"displayName"];
|
||||
if (!data)
|
||||
data = [oldRecord objectForKey: @"c_cn"];
|
||||
if (!data)
|
||||
data = @"";
|
||||
[newRecord setObject: data
|
||||
forKey: @"displayName"];
|
||||
[newRecord setObject: data forKey: @"displayName"];
|
||||
|
||||
data = [oldRecord objectForKey: @"mail"];
|
||||
if (!data)
|
||||
|
||||
Reference in New Issue
Block a user