diff options
author | Jeffrey Stedfast <fejj@novell.com> | 2004-11-11 06:42:00 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-11-11 06:42:00 +0800 |
commit | 219d9bd4a6fb4d9357dae14ee90fb087a9ffc54a (patch) | |
tree | 99ccce310a7e007cf0a5213def144e44e6313e01 /camel/camel-folder-summary.h | |
parent | ddeb876285c57a55ac2081048f4288f61dba3a8b (diff) | |
download | gsoc2013-evolution-219d9bd4a6fb4d9357dae14ee90fb087a9ffc54a.tar gsoc2013-evolution-219d9bd4a6fb4d9357dae14ee90fb087a9ffc54a.tar.gz gsoc2013-evolution-219d9bd4a6fb4d9357dae14ee90fb087a9ffc54a.tar.bz2 gsoc2013-evolution-219d9bd4a6fb4d9357dae14ee90fb087a9ffc54a.tar.lz gsoc2013-evolution-219d9bd4a6fb4d9357dae14ee90fb087a9ffc54a.tar.xz gsoc2013-evolution-219d9bd4a6fb4d9357dae14ee90fb087a9ffc54a.tar.zst gsoc2013-evolution-219d9bd4a6fb4d9357dae14ee90fb087a9ffc54a.zip |
Use the expanded ALL macro as on closer inspection of the RFC, we're not
2004-11-10 Jeffrey Stedfast <fejj@novell.com>
* providers/imap4/camel-imap4-summary.c (imap4_summary_fetch_all):
Use the expanded ALL macro as on closer inspection of the RFC,
we're not allowed to use macros in conjunction with other FETCH
items (such as UID in our case).
svn path=/trunk/; revision=27888
Diffstat (limited to 'camel/camel-folder-summary.h')
-rw-r--r-- | camel/camel-folder-summary.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-folder-summary.h b/camel/camel-folder-summary.h index bc9b9b6017..de56a6e8e0 100644 --- a/camel/camel-folder-summary.h +++ b/camel/camel-folder-summary.h @@ -63,13 +63,13 @@ enum _CamelMessageFlags { CAMEL_MESSAGE_DRAFT = 1<<2, CAMEL_MESSAGE_FLAGGED = 1<<3, CAMEL_MESSAGE_SEEN = 1<<4, - + /* these aren't really system flag bits, but are convenience flags */ CAMEL_MESSAGE_ATTACHMENTS = 1<<5, CAMEL_MESSAGE_ANSWERED_ALL = 1<<6, CAMEL_MESSAGE_JUNK = 1<<7, CAMEL_MESSAGE_SECURE = 1<<8, - + /* following flags are for the folder, and are not really permanent flags */ CAMEL_MESSAGE_FOLDER_FLAGGED = 1<<16, /* for use by the folder implementation */ |