Monotone-Parent: 58e78126183c1ff9ea959547093ca49f4c4e57d1

Monotone-Revision: 5b99bc42878b3f6237ea28ddfc15c31378ca515d

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-05-23T05:29:54
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2007-05-23 05:29:54 +00:00
parent 40914816ec
commit 1d31dccfcd
1 changed files with 4 additions and 3 deletions

View File

@ -513,7 +513,7 @@ static BOOL sendEMailNotifications = NO;
iCalPerson *currentPerson;
NSEnumerator *persons;
NSMutableArray *uids;
NSString *email;
NSString *email, *uid;
LDAPUserManager *um;
uids = [NSMutableArray array];
@ -523,8 +523,9 @@ static BOOL sendEMailNotifications = NO;
currentPerson = [persons nextObject];
while (currentPerson)
{
email = [currentPerson rfc822Email];
[uids addObject: [um getUIDForEmail: email]];
uid = [um getUIDForEmail: [currentPerson rfc822Email]];
if (uid)
[uids addObject: uid];
currentPerson = [persons nextObject];
}