aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorHarish Krishnaswamy <kharish@src.gnome.org>2005-01-11 02:17:34 +0800
committerHarish Krishnaswamy <kharish@src.gnome.org>2005-01-11 02:17:34 +0800
commit678a2586c738cfa7c555187b93142b63fa0645bb (patch)
treef2d026a3e35a1864437793bc9ef4f08135319e04 /plugins
parenta0e443d4365155974871214e9e04aeeb32e7d87b (diff)
downloadgsoc2013-evolution-678a2586c738cfa7c555187b93142b63fa0645bb.tar
gsoc2013-evolution-678a2586c738cfa7c555187b93142b63fa0645bb.tar.gz
gsoc2013-evolution-678a2586c738cfa7c555187b93142b63fa0645bb.tar.bz2
gsoc2013-evolution-678a2586c738cfa7c555187b93142b63fa0645bb.tar.lz
gsoc2013-evolution-678a2586c738cfa7c555187b93142b63fa0645bb.tar.xz
gsoc2013-evolution-678a2586c738cfa7c555187b93142b63fa0645bb.tar.zst
gsoc2013-evolution-678a2586c738cfa7c555187b93142b63fa0645bb.zip
dont handle attachments in case of decline
svn path=/trunk/; revision=28333
Diffstat (limited to 'plugins')
-rw-r--r--plugins/itip-formatter/itip-formatter.c73
1 files changed, 29 insertions, 44 deletions
diff --git a/plugins/itip-formatter/itip-formatter.c b/plugins/itip-formatter/itip-formatter.c
index ff07f6321f..a5b445c0a2 100644
--- a/plugins/itip-formatter/itip-formatter.c
+++ b/plugins/itip-formatter/itip-formatter.c
@@ -694,51 +694,36 @@ update_item (FormatItipPObject *pitip, ItipViewResponse response)
source = e_cal_get_source (pitip->current_ecal);
- if (response != ITIP_VIEW_RESPONSE_CANCEL) {
- if (e_cal_component_has_attachments (pitip->comp)) {
- GSList *attachments, *new_attachments = NULL, *l;
- CamelMimeMessage *msg = ((EMFormat *) pitip->pobject.format)->message;
-
- e_cal_component_get_attachment_list (pitip->comp, &attachments);
- for (l = attachments; l; l = l->next) {
- GSList *parts, *m;
- char *uri, *new_uri;
- CamelMimePart *part;
-
- uri = l->data;
-
- if (!g_ascii_strncasecmp (uri, "cid:...", 4)) {
- parts = NULL;
- message_foreach_part ((CamelMimePart *) msg, &parts);
-
- for (m = parts; m; m = m->next) {
- part = m->data;
-
- /* Skip the actual message and the text/calendar part */
- /* FIXME Do we need to skip anything else? */
- if (!g_ascii_strcasecmp (camel_mime_part_get_content_id (part), camel_mime_part_get_content_id ((CamelMimePart *) msg))
- || !g_ascii_strcasecmp (camel_mime_part_get_content_id (part), camel_mime_part_get_content_id (pitip->pobject.part)))
- continue;
-
- new_uri = em_utils_temp_save_part (NULL, part);
- new_attachments = g_slist_append (new_attachments, new_uri);
- }
-
- g_slist_free (parts);
-
- } else if (!g_ascii_strncasecmp (uri, "cid:", 4)) {
- part = camel_mime_message_get_part_by_content_id (msg, uri);
- new_uri = em_utils_temp_save_part (NULL, part);
- new_attachments = g_slist_append (new_attachments, new_uri);
- } else {
- /* Preserve existing non-cid ones */
- new_attachments = g_slist_append (new_attachments, g_strdup (uri));
- }
- }
- g_slist_free (attachments);
+ if ((response != ITIP_VIEW_RESPONSE_CANCEL)
+ && (response != ITIP_VIEW_RESPONSE_DECLINE)){
+ GSList *attachments = NULL, *l;
+ CamelMimeMessage *msg = ((EMFormat *) pitip->pobject.format)->message;
+ GSList *parts, *m;
+ char *uri, *new_uri;
+ CamelMimePart *part;
+
+ parts = NULL;
+ message_foreach_part ((CamelMimePart *) msg, &parts);
+
+ for (m = parts; m; m = m->next) {
+ part = m->data;
- e_cal_component_set_attachment_list (pitip->comp, new_attachments);
- }
+ /* Skip the actual message and the text/calendar part */
+ /* FIXME Do we need to skip anything else? */
+ if (!g_ascii_strcasecmp (camel_mime_part_get_content_id (part), camel_mime_part_get_content_id ((CamelMimePart *) msg))
+ || !g_ascii_strcasecmp (camel_mime_part_get_content_id (part), camel_mime_part_get_content_id (pitip->pobject.part)))
+ continue;
+
+ new_uri = em_utils_temp_save_part (NULL, part);
+ g_message ("DEBUG: the uri obtained was %s\n",
+ new_uri);
+ attachments = g_slist_append (attachments,
+ g_strdup (new_uri));
+ }
+
+ g_slist_free (parts);
+
+ e_cal_component_set_attachment_list (pitip->comp, attachments);
}
if (!e_cal_receive_objects (pitip->current_ecal, pitip->top_level, &error)) {