Added iCloud recognition

This commit is contained in:
M66B
2021-11-12 08:21:35 +01:00
parent 78078e1acc
commit 672796cd6e
3 changed files with 14 additions and 0 deletions

View File

@@ -1732,6 +1732,10 @@ public class MessageHelper {
if (!TextUtils.isEmpty(yahoo))
return "yahoo";
String icloud = imessage.getHeader("X-Proofpoint-Spam-Details", null);
if (!TextUtils.isEmpty(icloud)) // X-Mailer: iPhone Mail ...
return "icloud";
return null;
}