See ChangeLog

Monotone-Parent: b8c469061302cf2a28202e96504b5ec370eb8211
Monotone-Revision: 795fdd1b62319c12f9aef930c35c63d2fd26c3ac

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2009-04-09T21:01:15
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Ludovic Marcotte 2009-04-09 21:01:15 +00:00
parent 63aedf6047
commit 31a55844a3
2 changed files with 8 additions and 0 deletions

View File

@ -3,6 +3,9 @@
* Reverted previous patch and provided the correct
fix in SOGoMailFolder: -postData:flags:
* Fixed the compilation of unit tests for NGCards.
* SoObjects/Mailer/SOGoMailFolder.m: Added -displayName
which returns -nameInContainer to avoid crashes when
sending ACL changes notifications for email folders.
2009-04-09 Francis Lachapelle <flachapelle@inverse.ca>

View File

@ -1097,6 +1097,11 @@ static NSString *spoolFolder = nil;
return ([fm createDirectoriesAtPath: [self userSpoolFolderPath] attributes:nil]);
}
- (NSString *) displayName
{
return [self nameInContainer];
}
@end /* SOGoMailFolder */
@implementation SOGoSpecialMailFolder