diff options
author | Vincent Richard <[email protected]> | 2005-07-25 11:08:34 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-07-25 11:08:34 +0000 |
commit | bd925cef1c7a05394dcf518a7b103997324c3552 (patch) | |
tree | 191c0c790af1946d14fc933e015e3f6d566add87 /src/messaging/imap/IMAPFolder.cpp | |
parent | Don't throw if no field is found, just return normal priority. (diff) | |
download | vmime-bd925cef1c7a05394dcf518a7b103997324c3552.tar.gz vmime-bd925cef1c7a05394dcf518a7b103997324c3552.zip |
Added FETCH_IMPORTANCE flag.
Diffstat (limited to 'src/messaging/imap/IMAPFolder.cpp')
-rw-r--r-- | src/messaging/imap/IMAPFolder.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/messaging/imap/IMAPFolder.cpp b/src/messaging/imap/IMAPFolder.cpp index a63e8aa6..ca09fa47 100644 --- a/src/messaging/imap/IMAPFolder.cpp +++ b/src/messaging/imap/IMAPFolder.cpp @@ -643,7 +643,8 @@ void IMAPFolder::fetchMessage(ref <message> msg, const int options) const int IMAPFolder::getFetchCapabilities() const { return (FETCH_ENVELOPE | FETCH_CONTENT_INFO | FETCH_STRUCTURE | - FETCH_FLAGS | FETCH_SIZE | FETCH_FULL_HEADER | FETCH_UID); + FETCH_FLAGS | FETCH_SIZE | FETCH_FULL_HEADER | FETCH_UID | + FETCH_IMPORTANCE); } |