* add support for finding related messages to mu-find, mu4e, this does *not*

include the actual implementation though
This commit is contained in:
djcb
2012-12-25 11:58:32 +02:00
parent 3dc1e989ce
commit 58f5e39d34
7 changed files with 45 additions and 18 deletions

View File

@ -129,6 +129,8 @@ run_query (MuQuery *xapian, const gchar *query, MuConfig *opts, GError **err)
qflags |= MU_QUERY_FLAG_DESCENDING;
if (opts->skip_dups)
qflags |= MU_QUERY_FLAG_SKIP_DUPS;
if (opts->include_related)
qflags |= MU_QUERY_FLAG_INCLUDE_RELATED;
iter = mu_query_run (xapian, query, sortid, -1, qflags, err);
return iter;