From 30ed705fda4647a19ad243c9301187bb45bf9de8 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Wed, 14 Oct 2009 16:35:03 -0700 Subject: [PATCH] Index an attachment's filename extension as well. I hadn't realized that sup used a special term for this. But there you go. --- notmuch-index-message.cc | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/notmuch-index-message.cc b/notmuch-index-message.cc index 636757a1..3270aac7 100644 --- a/notmuch-index-message.cc +++ b/notmuch-index-message.cc @@ -443,9 +443,20 @@ gen_terms_part (Xapian::TermGenerator term_gen, if (disposition && strcmp (disposition->disposition, GMIME_DISPOSITION_ATTACHMENT) == 0) { + const char *filename = g_mime_part_get_filename (GMIME_PART (part)); + const char *extension; + add_term (term_gen.get_document (), "label", "attachment"); - gen_terms (term_gen, "attachment", - g_mime_part_get_filename (GMIME_PART (part))); + gen_terms (term_gen, "attachment", filename); + + if (filename) { + extension = strchr (filename, '.'); + if (extension) { + add_term (term_gen.get_document (), "attachment_extension", + extension + 1); + } + } + return; } -- 2.43.0