mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-27 19:35:10 +01:00
Mozilla forwards from subdomains now
This commit is contained in:
@@ -430,10 +430,12 @@ public class EntityMessage implements Serializable {
|
||||
return false;
|
||||
String email = ((InternetAddress) from[0]).getAddress();
|
||||
String domain = UriHelper.getEmailDomain(email);
|
||||
if (TextUtils.isEmpty(domain))
|
||||
return false;
|
||||
return "duck.com".equals(domain) ||
|
||||
"simplelogin.co".equals(domain) ||
|
||||
"mozmail.com".equals(domain) ||
|
||||
"anonaddy.me".equals(domain);
|
||||
"anonaddy.me".equals(domain) ||
|
||||
domain.endsWith(".mozmail.com");
|
||||
}
|
||||
|
||||
String[] checkFromDomain(Context context) {
|
||||
|
||||
Reference in New Issue
Block a user