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:
Dan Winship
2002-08-05 13:37:15 +00:00
parent 338e936539
commit aa069f945f
3 changed files with 12 additions and 1 deletions

View File

@ -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.

View File

@ -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 */

View File

@ -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;