mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-20 10:55:25 +00:00
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:
@@ -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,
|
||||
|
||||
@@ -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];
|
||||
|
||||
Reference in New Issue
Block a user