Do not prepend subject to mailing list chat messages (#3253)

This commit is contained in:
link2xt
2022-09-05 11:12:33 +03:00
committed by GitHub
parent d04a0c8f2f
commit 4b91a88bc9
4 changed files with 53 additions and 1 deletions

View File

@@ -551,7 +551,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.is_mailinglist_message() {
if self.is_mailinglist_message() && !self.has_chat_version() {
prepend_subject = true;
}