+2007-08-08 Wolfgang Sourdeau <wsourdeau@inverse.ca>
+
+ * UI/MailerUI/UIxMailFolderActions.m ([UIxMailFolderActions
+ -deleteFolderAction]): fixed the url of the destination folder.
+
+ * Main/SOGo.m ([SOGo +initialize]): show the build date and
+ hostname at startup.
+
2007-08-07 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Appointments/SOGoCalendarComponent.m
withCO: (SOGoMailFolder *) co
{
NSURL *destURL;
- NSString *trashFolderName, *folderName;
+ NSString *trashFolderName, *folderName, *path;
folderName = [[srcURL path] lastPathComponent];
trashFolderName
= [[co mailAccountFolder] trashFolderNameInContext: context];
-
+ path = [NSString stringWithFormat: @"/%@/%@",
+ [trashFolderName substringFromIndex: 6], folderName];
destURL = [[NSURL alloc] initWithScheme: [srcURL scheme]
- host: [srcURL host]
- path: [NSString stringWithFormat: @"/%@/%@",
- trashFolderName, folderName]];
+ host: [srcURL host] path: path];
[destURL autorelease];
return destURL;