* add basic support for skipping dups, unreadable messages in mu-msg-iter

This commit is contained in:
djcb
2012-12-17 22:29:39 +02:00
parent 35195f8c47
commit 76adc694c0
4 changed files with 48 additions and 37 deletions

View File

@ -71,7 +71,7 @@ enum _MuQueryFlags {
MU_QUERY_FLAG_THREADS = 1 << 0, /* <** add threading info */
MU_QUERY_FLAG_DESCENDING = 1 << 1, /* <** sort z->a */
MU_QUERY_FLAG_SKIP_UNREADABLE = 1 << 2, /* <** skip unreadable msgs */
MU_QUERY_FLAG_SKIP_MSGID_DUPS = 1 << 3 /* <** skip msgid dups */
MU_QUERY_FLAG_SKIP_DUPS = 1 << 3 /* <** skip duplicate msgs */
};
typedef enum _MuQueryFlags MuQueryFlags;