See ChangeLog

Monotone-Parent: 4e2b45bb5b0360d8cf107846fa39fb12f6bacf7f
Monotone-Revision: 7d1f68d661b9fcfd676be1e6d3d6ce6c1fb09df9

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2012-04-30T17:19:00
This commit is contained in:
Ludovic Marcotte
2012-04-30 17:19:00 +00:00
parent 19540fada1
commit c290e70342
3 changed files with 13 additions and 7 deletions
+6
View File
@@ -10,6 +10,12 @@
(-davCalendarUserAddressSet): Modified to honor
SOGoHideSystemEMail domain default.
* SoObjects/Mailer/SOGoDraftObject.m (-lookupName:...):
We prioritize the lookup of the "Drafts" folder over the
"Sent" one if both are matching.
* SoObjects/Mailer/SOGoMailFolder.m: Same as above.
2012-04-25 Jean Raby <jraby@inverse.ca>
+3 -3
View File
@@ -546,12 +546,12 @@ static NSString *inboxFolderName = @"INBOX";
[self _appendNamespaces: namespaces];
if ([namespaces containsObject: folderName])
klazz = [SOGoMailNamespace class];
else if ([folderName
isEqualToString: [self sentFolderNameInContext: _ctx]])
klazz = [SOGoSentFolder class];
else if ([folderName
isEqualToString: [self draftsFolderNameInContext: _ctx]])
klazz = [SOGoDraftsFolder class];
else if ([folderName
isEqualToString: [self sentFolderNameInContext: _ctx]])
klazz = [SOGoSentFolder class];
else if ([folderName
isEqualToString: [self trashFolderNameInContext: _ctx]])
klazz = [SOGoTrashFolder class];
+4 -4
View File
@@ -870,13 +870,13 @@ static NSString *defaultUserID = @"anyone";
fullFolderName = [NSString stringWithFormat: @"%@/%@",
[self traversalFromMailAccount], folderName];
if ([fullFolderName
isEqualToString:
[mailAccount sentFolderNameInContext: _ctx]])
className = @"SOGoSentFolder";
else if ([fullFolderName
isEqualToString:
[mailAccount draftsFolderNameInContext: _ctx]])
className = @"SOGoDraftsFolder";
else if ([fullFolderName
isEqualToString:
[mailAccount sentFolderNameInContext: _ctx]])
className = @"SOGoSentFolder";
else if ([fullFolderName
isEqualToString:
[mailAccount trashFolderNameInContext: _ctx]])