Add CAMEL_MESSAGE_ANSWERED_ALL, for folders that can distinguish a
* camel-folder-summary.h (CamelMessageFlags): Add CAMEL_MESSAGE_ANSWERED_ALL, for folders that can distinguish a reply-to-sender from a reply-to-all. (eg, Exchange) * providers/local/camel-local-folder.c (local_init): Add ANSWERED_ALL to permanent_flags too. svn path=/trunk/; revision=17694
This commit is contained in:
@ -1,3 +1,12 @@
|
||||
2002-08-05 Dan Winship <danw@ximian.com>
|
||||
|
||||
* camel-folder-summary.h (CamelMessageFlags): Add
|
||||
CAMEL_MESSAGE_ANSWERED_ALL, for folders that can distinguish a
|
||||
reply-to-sender from a reply-to-all. (eg, Exchange)
|
||||
|
||||
* providers/local/camel-local-folder.c (local_init): Add
|
||||
ANSWERED_ALL to permanent_flags too.
|
||||
|
||||
2002-08-02 Jeffrey Stedfast <fejj@ximian.com>
|
||||
|
||||
Fixes bug #26237.
|
||||
|
||||
@ -63,6 +63,7 @@ enum _CamelMessageFlags {
|
||||
CAMEL_MESSAGE_FLAGGED = 1<<3,
|
||||
CAMEL_MESSAGE_SEEN = 1<<4,
|
||||
CAMEL_MESSAGE_ATTACHMENTS = 1<<5,
|
||||
CAMEL_MESSAGE_ANSWERED_ALL = 1<<6,
|
||||
|
||||
/* following flags are for the folder, and are not really permanent flags */
|
||||
CAMEL_MESSAGE_FOLDER_FLAGGED = 1<<16, /* for use by the folder implementation */
|
||||
|
||||
@ -121,7 +121,8 @@ local_init(gpointer object, gpointer klass)
|
||||
|
||||
folder->permanent_flags = CAMEL_MESSAGE_ANSWERED |
|
||||
CAMEL_MESSAGE_DELETED | CAMEL_MESSAGE_DRAFT |
|
||||
CAMEL_MESSAGE_FLAGGED | CAMEL_MESSAGE_SEEN | CAMEL_MESSAGE_USER;
|
||||
CAMEL_MESSAGE_FLAGGED | CAMEL_MESSAGE_SEEN |
|
||||
CAMEL_MESSAGE_ANSWERED_ALL | CAMEL_MESSAGE_USER;
|
||||
|
||||
folder->summary = NULL;
|
||||
local_folder->search = NULL;
|
||||
|
||||
Reference in New Issue
Block a user