diff options
author | Dan Winship <danw@src.gnome.org> | 2000-12-20 03:42:15 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-12-20 03:42:15 +0800 |
commit | fb91cdbd3af111928ca64f7df6342d70c3447c67 (patch) | |
tree | 290ad8f12d52d167ab2ab0bdb319b9700e056166 /camel/providers/imap/camel-imap-summary.h | |
parent | 0e2e34336151ca1dfc434658175814c48045828f (diff) | |
download | gsoc2013-evolution-fb91cdbd3af111928ca64f7df6342d70c3447c67.tar.gz gsoc2013-evolution-fb91cdbd3af111928ca64f7df6342d70c3447c67.tar.zst gsoc2013-evolution-fb91cdbd3af111928ca64f7df6342d70c3447c67.zip |
Add "guint32 server_flags" to CamelImapMessageInfo to keep track of the
* providers/imap/camel-imap-summary.c: Add "guint32 server_flags"
to CamelImapMessageInfo to keep track of the last known message
flag state on the server.
(message_info_save, message_info_load): Save/load the
server_flags.
* providers/imap/camel-imap-folder.c: Make this use
CamelFolderChangeInfo and emit folder_changed notifications as it
gets them rather than only on refresh_info.
(imap_refresh_info): Notice flags that get cleared on the server
as well as flags that get set.
(imap_update_summary): Remove a comment that never actually
applied to the committed code.
svn path=/trunk/; revision=7086
Diffstat (limited to 'camel/providers/imap/camel-imap-summary.h')
-rw-r--r-- | camel/providers/imap/camel-imap-summary.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/camel/providers/imap/camel-imap-summary.h b/camel/providers/imap/camel-imap-summary.h index 0b844fdd7e..cd3556b23b 100644 --- a/camel/providers/imap/camel-imap-summary.h +++ b/camel/providers/imap/camel-imap-summary.h @@ -42,6 +42,7 @@ typedef struct _CamelImapMessageContentInfo { typedef struct _CamelImapMessageInfo { CamelMessageInfo info; + guint32 server_flags; } CamelImapMessageInfo; struct _CamelImapSummary { |