Added Zeptomail recognition

This commit is contained in:
M66B
2021-11-10 20:00:41 +01:00
parent ef2d40b072
commit 582a5cb82a
3 changed files with 5 additions and 0 deletions

View File

@@ -1712,6 +1712,10 @@ public class MessageHelper {
if (!TextUtils.isEmpty(elastic))
return "elastic";
String zeptomail = imessage.getHeader("X-JID", null); // TM-MAIL-JID
if (!TextUtils.isEmpty(zeptomail))
return "zeptomail";
return null;
}