Added Postmark recognition

This commit is contained in:
M66B
2021-11-10 10:44:50 +01:00
parent 0098fdc2f1
commit aa491cdb79
2 changed files with 17 additions and 0 deletions

View File

@@ -1684,6 +1684,10 @@ public class MessageHelper {
if (!TextUtils.isEmpty(mailchimp))
return "mailchimp";
String postmark = imessage.getHeader("X-PM-Message-Id", null);
if (!TextUtils.isEmpty(postmark))
return "postmark";
return null;
}