diff options
author | Not Zed <NotZed@HelixCode.com> | 2000-06-03 02:09:18 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2000-06-03 02:09:18 +0800 |
commit | 4cf5bbfa5a228f47256e74a7a11180e2d512561b (patch) | |
tree | 102fe3a9d0607fe08e971e11ac6f7bc13ec2bf15 /camel/camel-folder-summary.h | |
parent | db7feeef33e7d9beb72ededf321acc11fe471c96 (diff) | |
download | gsoc2013-evolution-4cf5bbfa5a228f47256e74a7a11180e2d512561b.tar gsoc2013-evolution-4cf5bbfa5a228f47256e74a7a11180e2d512561b.tar.gz gsoc2013-evolution-4cf5bbfa5a228f47256e74a7a11180e2d512561b.tar.bz2 gsoc2013-evolution-4cf5bbfa5a228f47256e74a7a11180e2d512561b.tar.lz gsoc2013-evolution-4cf5bbfa5a228f47256e74a7a11180e2d512561b.tar.xz gsoc2013-evolution-4cf5bbfa5a228f47256e74a7a11180e2d512561b.tar.zst gsoc2013-evolution-4cf5bbfa5a228f47256e74a7a11180e2d512561b.zip |
If we get a funny result, just throw it out. Basically a fix for the one
2000-06-02 Not Zed <NotZed@HelixCode.com>
* camel-mime-utils.c (header_decode_date): If we get a funny
result, just throw it out. Basically a fix for the one true
broken TradeClient.
2000-06-01 Not Zed <NotZed@HelixCode.com>
* camel-folder-summary.c (message_info_free): Free
references/messsage id.
(message_info_save): Save them.
(message_info_load): Load them.
(message_info_new): And get them from the new message.
(CAMEL_FOLDER_SUMMARY_VERSION): Bumped for new changes.
* camel-folder-summary.h: Added references and messageid to
summary.
svn path=/trunk/; revision=3391
Diffstat (limited to 'camel/camel-folder-summary.h')
-rw-r--r-- | camel/camel-folder-summary.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/camel/camel-folder-summary.h b/camel/camel-folder-summary.h index a22172c41b..1281415368 100644 --- a/camel/camel-folder-summary.h +++ b/camel/camel-folder-summary.h @@ -79,6 +79,10 @@ typedef struct { time_t date_sent; time_t date_received; + /* Message-ID / References structures */ + char *message_id; /* for this message */ + struct _header_references *references; /* from parent to root */ + struct _CamelFlag *user_flags; /* tree of content description - NULL if it is not available */ |