Monotone-Parent: 7f9ed95ef5a72bd87470633eec2baeb70b48936e

Monotone-Revision: 1e0cd0c819f1c4c90f09af9a26fb932910568542

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-11-26T14:23:35
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-11-26 14:23:35 +00:00
parent 9b200c7820
commit 741ae9a281
+4 -5
View File
@@ -488,15 +488,14 @@ static BOOL showTextAttachmentsInline = NO;
[to release];
}
/* If "to" is empty, we add at least ourself as a recipient! */
/* If "to" is empty, we add at least ourself as a recipient!
This is for emails in the "Sent" folder that we reply to... */
if (![to count])
{
[to removeAllObjects];
if ([[_envelope replyTo] count])
[self _addEMailsOfAddresses: [_envelope replyTo] toArray: to];
[self _addEMailsOfAddresses: [_envelope replyTo] toArray: to];
else
[self _addEMailsOfAddresses: [_envelope from] toArray: to];
[self _addEMailsOfAddresses: [_envelope from] toArray: to];
}
[allRecipients release];