aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/imap/MCIMAPSearchExpression.h
diff options
context:
space:
mode:
authorGravatar Hoà V. DINH <dinh.viet.hoa@gmail.com>2013-12-03 10:59:30 -0800
committerGravatar Hoà V. DINH <dinh.viet.hoa@gmail.com>2013-12-03 10:59:30 -0800
commitbaef8a77d30a9844eb63886624a1e04761d88a4a (patch)
tree6a4bd8f5e5a2ca806de9fee478274164a0c397e5 /src/core/imap/MCIMAPSearchExpression.h
parentdf22a352aa3e99ad322e25f5c166b94c3b3329c7 (diff)
parent0981a47b765d26cb1f2bf19483ea5c2e96c9cbeb (diff)
Merge pull request #481 from pfennema/master
Added size request to get message size of complete message, added size search features.
Diffstat (limited to 'src/core/imap/MCIMAPSearchExpression.h')
-rw-r--r--src/core/imap/MCIMAPSearchExpression.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/imap/MCIMAPSearchExpression.h b/src/core/imap/MCIMAPSearchExpression.h
index 13d934bc..2696366c 100644
--- a/src/core/imap/MCIMAPSearchExpression.h
+++ b/src/core/imap/MCIMAPSearchExpression.h
@@ -44,6 +44,8 @@ namespace mailcore {
static IMAPSearchExpression * searchBeforeReceivedDate(time_t date);
static IMAPSearchExpression * searchOnReceivedDate(time_t date);
static IMAPSearchExpression * searchSinceReceivedDate(time_t date);
+ static IMAPSearchExpression * searchSizeLarger(uint32_t size);
+ static IMAPSearchExpression * searchSizeSmaller(uint32_t size);
static IMAPSearchExpression * searchGmailThreadID(uint64_t number);
static IMAPSearchExpression * searchAnd(IMAPSearchExpression * left, IMAPSearchExpression * right);
static IMAPSearchExpression * searchOr(IMAPSearchExpression * left, IMAPSearchExpression * right);