mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-23 22:51:02 +00:00
Added flowmailer recognition
This commit is contained in:
parent
fe90833a3e
commit
798767fa87
3 changed files with 23 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
16
app/src/main/res/drawable/infra_flowmailer.xml
Normal file
16
app/src/main/res/drawable/infra_flowmailer.xml
Normal file
File diff suppressed because one or more lines are too long
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue