Added Pepipost recognition

This commit is contained in:
M66B
2021-11-10 18:47:42 +01:00
parent 2730798964
commit af7e761a5a
3 changed files with 21 additions and 0 deletions

View File

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