+2005-07-06 Helge Hess <helge.hess@opengroupware.org>
+
+ * SOGoMailObject.m: prefetch pgp-signature parts (v0.9.87)
+
2005-07-06 Helge Hess <helge.hess@opengroupware.org>
* SOGoMailObject.m: started -trash action (v0.9.86)
+2005-07-06 Helge Hess <helge.hess@opengroupware.org>
+
* v0.9.85
* SOGoMailFolder.m: added ability to check certain ACL permissions (and
}
else if ([mt isEqualToString:@"image"])
return [@"." stringByAppendingString:st];
+ else if ([mt isEqualToString:@"application"]) {
+ if ([st isEqualToString:@"pgp-signature"])
+ return @".asc";
+ }
return nil;
}
Remember that we need special processing for message/rfc822 which maps the
namespace of multiparts directly into the main namespace.
+
+ TODO(hh): no I don't remember, please explain in more detail!
*/
pe = [_path objectEnumerator];
while ((p = [pe nextObject]) != nil && [info isNotNull]) {
if ([_subtype isEqualToString:@"calendar"]) /* we also fetch calendars */
return YES;
}
+
+ if ([_type isEqualToString:@"application"]) {
+ if ([_subtype isEqualToString:@"pgp-signature"])
+ return YES;
+ }
+
return NO;
}