mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 12:28:09 +01:00
Index the filename of any attachment.
This commit is contained in:
parent
653ff260f5
commit
29974af08f
1 changed files with 3 additions and 1 deletions
|
@ -439,11 +439,13 @@ gen_terms_part (Xapian::TermGenerator term_gen,
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
disposition = g_mime_object_get_content_disposition (GMIME_OBJECT (part));
|
disposition = g_mime_object_get_content_disposition (part);
|
||||||
if (disposition &&
|
if (disposition &&
|
||||||
strcmp (disposition->disposition, GMIME_DISPOSITION_ATTACHMENT) == 0)
|
strcmp (disposition->disposition, GMIME_DISPOSITION_ATTACHMENT) == 0)
|
||||||
{
|
{
|
||||||
add_term (term_gen.get_document (), "label", "attachment");
|
add_term (term_gen.get_document (), "label", "attachment");
|
||||||
|
gen_terms (term_gen, "attachment",
|
||||||
|
g_mime_part_get_filename (GMIME_PART (part)));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue