mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-19 03:49:28 +00:00
Monotone-Parent: 24c2f8206b434e2894e6aa447358893a06cc7dc7
Monotone-Revision: 17fbb038ecae79b08f511eacf0417a89716461bc Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2008-08-29T17:33:19 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
2008-08-29 Ludovic Marcotte <lmarcotte@inverse.ca>
|
||||
|
||||
* SoObjects/Mailer/SOGoDraftObject.m ([SOGoDraftObject
|
||||
-addRecipients:recipientstoArray:array]): same as below.
|
||||
|
||||
* SoObjects/Mailer/SOGoDraftObject.m:
|
||||
([SOGoDraftObject -addEMailsOfAddresses:_addrstoArray:_ma]): test
|
||||
if the returned email is nil before adding it to the array.
|
||||
|
||||
2008-08-28 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* UI/MailerUI/UIxMailActions.m ([UIxMailActions
|
||||
|
||||
@@ -391,7 +391,9 @@ static BOOL showTextAttachmentsInline = NO;
|
||||
|
||||
addresses = [_addrs objectEnumerator];
|
||||
while ((currentAddress = [addresses nextObject]))
|
||||
[_ma addObject: [currentAddress email]];
|
||||
if ([currentAddress email])
|
||||
[_ma addObject: [currentAddress email]];
|
||||
|
||||
}
|
||||
|
||||
- (void) _addRecipients: (NSArray *) recipients
|
||||
@@ -402,7 +404,8 @@ static BOOL showTextAttachmentsInline = NO;
|
||||
|
||||
addresses = [recipients objectEnumerator];
|
||||
while ((currentAddress = [addresses nextObject]))
|
||||
[array addObject: [currentAddress baseEMail]];
|
||||
if ([currentAddress baseEMail])
|
||||
[array addObject: [currentAddress baseEMail]];
|
||||
}
|
||||
|
||||
- (void) _purgeRecipients: (NSArray *) recipients
|
||||
|
||||
Reference in New Issue
Block a user