diff options
author | Radek Doulik <rodo@ximian.com> | 2004-03-18 03:47:52 +0800 |
---|---|---|
committer | Radek Doulik <rodo@src.gnome.org> | 2004-03-18 03:47:52 +0800 |
commit | 344bb7b1bcd540e761e9a4e9589e910069403369 (patch) | |
tree | c8a354fa3e45d5d51473ad53396d4ef2bf37b06b /camel/camel-folder-summary.h | |
parent | 0d0740a85cdc7c15e1941e902499c043c4b0802f (diff) | |
download | gsoc2013-evolution-344bb7b1bcd540e761e9a4e9589e910069403369.tar.gz gsoc2013-evolution-344bb7b1bcd540e761e9a4e9589e910069403369.tar.zst gsoc2013-evolution-344bb7b1bcd540e761e9a4e9589e910069403369.zip |
reverted last fix and:
2004-03-17 Radek Doulik <rodo@ximian.com>
* camel-folder-summary.h: use 1<<30 for CAMEL_MESSAGE_JUNK_LEARN,
1<<17 was already used by imap provider and maybe others
svn path=/trunk/; revision=25103
Diffstat (limited to 'camel/camel-folder-summary.h')
-rw-r--r-- | camel/camel-folder-summary.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/camel/camel-folder-summary.h b/camel/camel-folder-summary.h index d7ed505a1a..fc995874af 100644 --- a/camel/camel-folder-summary.h +++ b/camel/camel-folder-summary.h @@ -70,7 +70,11 @@ enum _CamelMessageFlags { /* following flags are for the folder, and are not really permanent flags */ CAMEL_MESSAGE_FOLDER_FLAGGED = 1<<16, /* for use by the folder implementation */ - CAMEL_MESSAGE_JUNK_LEARN = 1<<17, /* used when setting CAMEL_MESSAGE_JUNK flag + + /* flags after 1<<16 are used by camel providers, + if adding non permanent flags, add them to the end */ + + CAMEL_MESSAGE_JUNK_LEARN = 1<<30, /* used when setting CAMEL_MESSAGE_JUNK flag to say that we request junk plugin to learn that message as junk/non junk */ CAMEL_MESSAGE_USER = 1<<31 /* supports user flags */ |