To get the previous behaviour, add this to your muttrc:
unignore folder tags
Closes: #279
{
/* Add some fake headers based on notmuch data */
char *folder = nm_header_get_folder(h);
- if (folder)
+ if (folder && !(option (OPTWEED) && mutt_matches_ignore ("folder")))
{
char buffer[LONG_STRING];
strfcpy (buffer, folder, sizeof (buffer));
fputc ('\n', out);
}
char *tags = nm_header_get_tags(h);
- if (tags)
+ if (tags && !(option (OPTWEED) && mutt_matches_ignore ("tags")))
{
fputs ("Tags: ", out);
fputs (tags, out);