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;
}

File diff suppressed because one or more lines are too long

View File

@ -1815,6 +1815,7 @@
<string name="infra_awsses" translatable="false">Amazon SES</string>
<string name="infra_elastic" translatable="false">Elastic Email</string>
<string name="infra_flowmailer" translatable="false">Flowmailer</string>
<string name="infra_gmail" translatable="false">Gmail/Gsuite</string>
<string name="infra_icloud" translatable="false">Apple/iCloud</string>
<string name="infra_icontact" translatable="false">iContact</string>