prepend subject whenever we think sth. is a mailinglist, not only for a subset of mailing lists

This commit is contained in:
B. Petersen
2021-02-14 20:23:05 +01:00
committed by bjoern
parent 2865ced3c0
commit 0b3fb9c0a3

View File

@@ -408,7 +408,7 @@ impl MimeMessage {
// For mailing lists, always add the subject because sometimes there are different topics
// and otherwise it might be hard to keep track:
if self.get(HeaderDef::ListId).is_some() {
if self.is_mailinglist_message() {
prepend_subject = true;
}