diff options
author | Not Zed <NotZed@Ximian.com> | 2004-03-26 13:23:46 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-03-26 13:23:46 +0800 |
commit | fc13ab0c7ca5ff6d5735e8900f0fbf1dc9d3934f (patch) | |
tree | dc8cc5c1392b8a88156a98a229657b8e9f15718a /camel/providers/local | |
parent | 28e3d6dc45dd4ab5e0d34078fdf86f1923d0e177 (diff) | |
download | gsoc2013-evolution-fc13ab0c7ca5ff6d5735e8900f0fbf1dc9d3934f.tar.gz gsoc2013-evolution-fc13ab0c7ca5ff6d5735e8900f0fbf1dc9d3934f.tar.zst gsoc2013-evolution-fc13ab0c7ca5ff6d5735e8900f0fbf1dc9d3934f.zip |
Added new maildir flags D for draft and commented P for forwarded.
2004-03-26 Not Zed <NotZed@Ximian.com>
* providers/local/camel-maildir-summary.c (flagbits[]): Added new
maildir flags D for draft and commented P for forwarded.
* providers/imap/camel-imap-store.c (get_folder_counts): Instead
of looking up the folder in the object bag which will handle
reservations and perhaps deadlock, just get the list of opened
folders and use them if they're available. Should fix #56045.
svn path=/trunk/; revision=25195
Diffstat (limited to 'camel/providers/local')
-rw-r--r-- | camel/providers/local/camel-maildir-summary.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/camel/providers/local/camel-maildir-summary.c b/camel/providers/local/camel-maildir-summary.c index 37e1ac2ce7..edc81a5230 100644 --- a/camel/providers/local/camel-maildir-summary.c +++ b/camel/providers/local/camel-maildir-summary.c @@ -168,7 +168,9 @@ static struct { char flag; guint32 flagbit; } flagbits[] = { + { 'D', CAMEL_MESSAGE_DRAFT }, { 'F', CAMEL_MESSAGE_FLAGGED }, + /*{ 'P', CAMEL_MESSAGE_FORWARDED },*/ { 'R', CAMEL_MESSAGE_ANSWERED }, { 'S', CAMEL_MESSAGE_SEEN }, { 'T', CAMEL_MESSAGE_DELETED }, |