Added auth result

This commit is contained in:
M66B
2023-12-19 09:17:03 +01:00
parent 5a72eaf6f5
commit 3aa13a30ba
7 changed files with 3027 additions and 6 deletions

View File

@@ -163,6 +163,7 @@ public class EntityMessage implements Serializable {
public Boolean dkim;
public Boolean spf;
public Boolean dmarc;
public Boolean auth; // SMTP
public Boolean mx;
public Boolean blocklist;
public Boolean from_domain; // spf/smtp.mailfrom <> from
@@ -757,6 +758,7 @@ public class EntityMessage implements Serializable {
Objects.equals(this.dkim, other.dkim) &&
Objects.equals(this.spf, other.spf) &&
Objects.equals(this.dmarc, other.dmarc) &&
Objects.equals(this.auth, other.auth) &&
Objects.equals(this.mx, other.mx) &&
Objects.equals(this.blocklist, other.blocklist) &&
Objects.equals(this.from_domain, other.from_domain) &&