See ChangeLog

Monotone-Parent: cc3307154f3db7f06e6e54e701e48d8e3e676c08
Monotone-Revision: 0280dffce97a63277bc84ffa183716452b431953

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2009-04-09T16:29:02
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle
2009-04-09 16:29:02 +00:00
parent ec4f39e02f
commit 473c8cf0d0
2 changed files with 14 additions and 0 deletions
+5
View File
@@ -1,3 +1,8 @@
2009-04-09 Francis Lachapelle <flachapelle@inverse.ca>
* SoObjects/Mailer/SOGoDraftObject.m ([SOGoDraftObject
-sendMail]): create the Sent folder if it doesn't exist.
2009-04-07 Cyril Robert <crobert@inverse.ca>
* UI/Common/UIxPageFrame.m (isCompatibleBrowser): Fixed Safari 3 issue,
+9
View File
@@ -1381,6 +1381,15 @@ static BOOL showTextAttachmentsInline = NO;
if (!error)
{
error = [sentFolder postData: message flags: @"seen"];
if (error)
{
// Sent folder probably doesn't exist -- create it
error = [[self imap4Connection]
createMailbox: [imap4 imap4FolderNameForURL: [sentFolder imap4URL]]
atURL: [[self mailAccountFolder] imap4URL]];
if (!error)
error = [sentFolder postData: message flags: @"seen"];
}
if (!error)
{
[self imap4Connection];