diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-04-05 08:08:23 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-04-05 08:08:23 +0800 |
commit | 49e82f8b9fb67aba12f536c6ea29a640b7a10104 (patch) | |
tree | 74f0a25c023551fa3839ee2ed231536bd4ef9d77 /camel/camel-mime-utils.h | |
parent | bee1faf0a3ad4d71b76a831466b955bdde00e95d (diff) | |
download | gsoc2013-evolution-49e82f8b9fb67aba12f536c6ea29a640b7a10104.tar.gz gsoc2013-evolution-49e82f8b9fb67aba12f536c6ea29a640b7a10104.tar.zst gsoc2013-evolution-49e82f8b9fb67aba12f536c6ea29a640b7a10104.zip |
Simplified since we can now decode in-reply-to without getting extra
2002-04-04 Jeffrey Stedfast <fejj@ximian.com>
* camel-folder-summary.c (message_info_new): Simplified since we
can now decode in-reply-to without getting extra cruft. Get rid of
the FIXME about having to check scan->id because of the
possibility of it being NULL, this can no longer happen.
* camel-mime-utils.c (header_references_inreplyto_decode): New
function to decode in-reply-to headers. Only grabs the first thing
that looks like a message-id and then returns.
(header_references_decode): Loop calling
header_references_decode_single (a new internal function).
svn path=/trunk/; revision=16361
Diffstat (limited to 'camel/camel-mime-utils.h')
-rw-r--r-- | camel/camel-mime-utils.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/camel/camel-mime-utils.h b/camel/camel-mime-utils.h index 8936012cbd..2c29f5cc43 100644 --- a/camel/camel-mime-utils.h +++ b/camel/camel-mime-utils.h @@ -188,7 +188,8 @@ char *header_msgid_decode (const char *in); /* generate msg id */ char *header_msgid_generate (void); -/* decode a References header */ +/* decode a References or In-Reply-To header */ +struct _header_references *header_references_inreplyto_decode (const char *in); struct _header_references *header_references_decode(const char *in); void header_references_list_clear(struct _header_references **list); void header_references_list_append_asis(struct _header_references **list, char *ref); |