See ChangeLog

Monotone-Parent: 46d81097556b9377a3e1d2a4ed9a7083a5de8a77
Monotone-Revision: 5cc529e77d87c48d01d645b60e6978e296c9f09a

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2009-10-23T20:25:36
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle
2009-10-23 20:25:36 +00:00
parent 602d6748e8
commit b493904357
2 changed files with 6 additions and 1 deletions
+2
View File
@@ -5,6 +5,8 @@
no FN attribute and no N attribute.
(-composeAction): fixed the case when dealing with a contact with
no email address.
(-composeAction): fixed the case when dealing with a contact from
an LDAP source.
* UI/Scheduler/UIxComponentEditor.m (-calendarList): added proper
verification of deletion rights on the current calendar and
+4 -1
View File
@@ -37,6 +37,7 @@
#import <Contacts/SOGoContactGCSList.h>
#import <Contacts/SOGoContactGCSEntry.h>
#import <Contacts/SOGoContactFolders.h>
#import <Contacts/SOGoContactLDIFEntry.h>
#import <SoObjects/Mailer/SOGoMailObject.h>
#import <SoObjects/Mailer/SOGoMailAccount.h>
@@ -230,7 +231,8 @@
[addresses addObject: formattedMail];
}
}
else if ([contact isKindOfClass: [SOGoContactGCSEntry class]])
else if ([contact isKindOfClass: [SOGoContactGCSEntry class]]
|| [contact isKindOfClass: [SOGoContactLDIFEntry class]])
{
// We fetch the preferred email address of the contact or
// the first defined email address
@@ -239,6 +241,7 @@
if (formattedMail)
[addresses addObject: formattedMail];
}
uid = [uids nextObject];
}