From 6e2ff991ae1bd70ac0659ea3acb80b0b139df165 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Sun, 15 Sep 2002 03:29:41 +0000 Subject: If header_msgid_decode fails for the content-id field, just grab whatever 2002-09-13 Jeffrey Stedfast * camel-mime-part.c (process_header): If header_msgid_decode fails for the content-id field, just grab whatever is between the <>'s (yes, this means that the content-id is invalid - but what can ya do?). Addresses bug #21027. svn path=/trunk/; revision=18071 --- camel/camel-mime-part.c | 8 +++++--- camel/providers/imap/camel-imap-folder.c | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) (limited to 'camel') diff --git a/camel/camel-mime-part.c b/camel/camel-mime-part.c index c7545a6a9c..320324701b 100644 --- a/camel/camel-mime-part.c +++ b/camel/camel-mime-part.c @@ -43,6 +43,7 @@ #include "camel-mime-filter-charset.h" #include "camel-mime-part.h" #include "camel-mime-part-utils.h" +#include "camel-mime-utils.h" #include "camel-exception.h" #include "camel-charset-map.h" #include "string-utils.h" @@ -235,7 +236,8 @@ process_header(CamelMedium *medium, const char *header_name, const char *header_ case HEADER_CONTENT_ID: g_free (mime_part->content_id); if (!(mime_part->content_id = header_msgid_decode (header_value))) { - header_decode_lwsp (&header_value); + while (*header_value && strchr (" \t\r\n", *header_value)) + header_value++; if (*header_value == '<') { p = header_value; while (*p && *p != '>') @@ -245,8 +247,8 @@ process_header(CamelMedium *medium, const char *header_name, const char *header_ mime_part->content_id = g_strdup (header_value); } - if (mime_part->header_value) - g_strstrip (mime_part->header_value); + if (mime_part->content_id) + g_strstrip (mime_part->content_id); } break; case HEADER_ENCODING: diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c index da59669783..09e4f8d8f1 100644 --- a/camel/providers/imap/camel-imap-folder.c +++ b/camel/providers/imap/camel-imap-folder.c @@ -380,7 +380,7 @@ camel_imap_folder_selected (CamelFolder *folder, CamelImapResponse *response, camel_imap_folder_changed (folder, exists, NULL, ex); /* And we're done. */ -} +} static void imap_finalize (CamelObject *object) -- cgit v1.2.3