mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 14:46:31 +02:00
Added search by size
This commit is contained in:
@@ -320,6 +320,7 @@ public interface DaoMessage {
|
||||
" AND (NOT :hidden OR NOT ui_snoozed IS NULL)" +
|
||||
" AND (NOT :encrypted OR ui_encrypt > 0)" +
|
||||
" AND (NOT :attachments OR attachments > 0)" +
|
||||
" AND (NOT :size OR total > :size)" +
|
||||
" AND (:after IS NULL OR received > :after)" +
|
||||
" AND (:before IS NULL OR received < :before)" +
|
||||
" ORDER BY received DESC" +
|
||||
@@ -328,6 +329,7 @@ public interface DaoMessage {
|
||||
Long account, Long folder, String find,
|
||||
boolean senders, boolean recipients, boolean subject, boolean keywords, boolean message,
|
||||
boolean unseen, boolean flagged, boolean hidden, boolean encrypted, boolean attachments,
|
||||
Integer size,
|
||||
Long after, Long before,
|
||||
int limit, int offset);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user