2009-12-24 20:31:48 +01:00
|
|
|
Index: plugins/itip-formatter/itip-formatter.c
|
|
|
|
===================================================================
|
|
|
|
--- plugins/itip-formatter/itip-formatter.c.orig
|
2008-11-17 16:47:50 +01:00
|
|
|
+++ plugins/itip-formatter/itip-formatter.c
|
2009-12-30 00:16:57 +01:00
|
|
|
@@ -2112,6 +2112,14 @@ in_proper_folder (CamelFolder *folder)
|
2008-11-17 16:47:50 +01:00
|
|
|
if (!folder)
|
|
|
|
return res;
|
|
|
|
|
|
|
|
+
|
|
|
|
+ /*FIXME Currently there is no other way to identify if its a sent items
|
|
|
|
+ folder, so we just compare the folder name */
|
|
|
|
+ if (!g_ascii_strcasecmp (folder->name, _("Sent")) ||
|
|
|
|
+ !g_ascii_strcasecmp (folder->name, _("Sent Items")))
|
|
|
|
+ return FALSE;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
uri = mail_tools_folder_to_url (folder);
|
|
|
|
|
2009-12-30 00:16:57 +01:00
|
|
|
if (mail_folder_cache_get_folder_info_flags (folder, &flags)) {
|