* add support for finding related messages to mu-find, mu4e, this does *not*
include the actual implementation though
This commit is contained in:
@ -68,12 +68,13 @@ char* mu_query_version (MuQuery *store)
|
||||
enum _MuQueryFlags {
|
||||
MU_QUERY_FLAG_NONE = 0,
|
||||
|
||||
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_DUPS = 1 << 3 /* <** skip duplicate msgs */
|
||||
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_DUPS = 1 << 3, /**< skip duplicate msgs */
|
||||
MU_QUERY_FLAG_INCLUDE_RELATED = 1 << 4 /**< include related msgs */
|
||||
};
|
||||
typedef enum _MuQueryFlags MuQueryFlags;
|
||||
typedef enum _MuQueryFlags MuQueryFlags;
|
||||
|
||||
/**
|
||||
* run a Xapian query; for the syntax, please refer to the mu-find
|
||||
|
||||
Reference in New Issue
Block a user