Added flowmailer recognition

This commit is contained in:
M66B
2021-11-26 09:44:13 +01:00
parent fe90833a3e
commit 798767fa87
3 changed files with 23 additions and 0 deletions

View File

@@ -1803,6 +1803,12 @@ public class MessageHelper {
return "zoho";
}
String return_path = imessage.getHeader("Return-Path", null);
if (!TextUtils.isEmpty(return_path)) {
if (return_path.contains("flowmailer.com"))
return "flowmailer";
}
return null;
}