mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 13:47:05 +02:00
Added DNS blocklist check
This commit is contained in:
@@ -144,6 +144,7 @@ public class EntityMessage implements Serializable {
|
||||
public Boolean spf;
|
||||
public Boolean dmarc;
|
||||
public Boolean mx;
|
||||
public Boolean blocklist;
|
||||
public Boolean reply_domain; // differs from 'from'
|
||||
public String avatar; // lookup URI from sender
|
||||
public String sender; // sort key: from email address
|
||||
@@ -542,6 +543,7 @@ public class EntityMessage implements Serializable {
|
||||
Objects.equals(this.spf, other.spf) &&
|
||||
Objects.equals(this.dmarc, other.dmarc) &&
|
||||
Objects.equals(this.mx, other.mx) &&
|
||||
Objects.equals(this.blocklist, other.blocklist) &&
|
||||
Objects.equals(this.reply_domain, other.reply_domain) &&
|
||||
Objects.equals(this.avatar, other.avatar) &&
|
||||
Objects.equals(this.sender, other.sender) &&
|
||||
|
||||
Reference in New Issue
Block a user