X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=lib%2Fthread.cc;h=e514bf827ec58be95e2d5d0aa308268204cd230e;hp=3aa9d4807292f873970780092dd7741f2c6bedee;hb=7fb56f9dc5d8e66f717f5e48ecbfbc11c8190182;hpb=c48dcc302c5509452e5364a8aebdfa03f33a6857 diff --git a/lib/thread.cc b/lib/thread.cc index 3aa9d480..e514bf82 100644 --- a/lib/thread.cc +++ b/lib/thread.cc @@ -112,12 +112,6 @@ _thread_add_message (notmuch_thread_t *thread, g_object_unref (G_OBJECT (list)); } - if (! thread->subject) { - const char *subject; - subject = notmuch_message_get_header (message, "subject"); - thread->subject = talloc_strdup (thread, subject); - } - for (tags = notmuch_message_get_tags (message); notmuch_tags_valid (tags); notmuch_tags_move_to_next (tags)) @@ -142,6 +136,24 @@ _thread_add_matched_message (notmuch_thread_t *thread, if (date > thread->newest || ! thread->matched_messages) thread->newest = date; + if (! thread->subject) { + const char *subject; + + subject = notmuch_message_get_header (message, "subject"); + + if ((strncasecmp (subject, "Re: ", 4) == 0) || + (strncasecmp (subject, "Aw: ", 4) == 0) || + (strncasecmp (subject, "Vs: ", 4) == 0) || + (strncasecmp (subject, "Sv: ", 4) == 0)) + { + thread->subject = talloc_strdup (thread, subject + 4); + } + else + { + thread->subject = talloc_strdup (thread, subject); + } + } + thread->matched_messages++; if (g_hash_table_lookup_extended (thread->message_hash, @@ -209,7 +221,8 @@ notmuch_thread_t * _notmuch_thread_create (void *ctx, notmuch_database_t *notmuch, const char *thread_id, - const char *query_string) + const char *query_string, + notmuch_sort_t sort) { notmuch_thread_t *thread; const char *thread_id_query_string; @@ -285,7 +298,7 @@ _notmuch_thread_create (void *ctx, thread->oldest = 0; thread->newest = 0; - notmuch_query_set_sort (thread_id_query, NOTMUCH_SORT_OLDEST_FIRST); + notmuch_query_set_sort (thread_id_query, sort); for (messages = notmuch_query_search_messages (thread_id_query); notmuch_messages_valid (messages); @@ -318,6 +331,8 @@ _notmuch_thread_create (void *ctx, if (unlikely (matched_query == NULL)) return NULL; + notmuch_query_set_sort (matched_query, sort); + for (messages = notmuch_query_search_messages (matched_query); notmuch_messages_valid (messages); notmuch_messages_move_to_next (messages))