Added Yahoo! recognition

This commit is contained in:
M66B
2021-11-11 09:37:18 +01:00
parent 7aa19e2f70
commit 646965a1cd
3 changed files with 14 additions and 0 deletions

View File

@@ -1728,6 +1728,10 @@ public class MessageHelper {
if (!TextUtils.isEmpty(outlook))
return "outlook";
String yahoo = imessage.getHeader("X-Sonic-MF", null);
if (!TextUtils.isEmpty(yahoo))
return "yahoo";
return null;
}