Added Elastic Email recognition

This commit is contained in:
M66B
2021-11-10 19:28:37 +01:00
parent af7e761a5a
commit ef2d40b072
3 changed files with 29 additions and 0 deletions

View File

@@ -1708,6 +1708,10 @@ public class MessageHelper {
if (!TextUtils.isEmpty(netcore))
return "netcore";
String elastic = imessage.getHeader("X-Msg-EID", null);
if (!TextUtils.isEmpty(elastic))
return "elastic";
return null;
}