BIMI: added selector

This commit is contained in:
M66B
2021-07-16 20:03:27 +02:00
parent dd9045dd28
commit 6c4fe61caf
8 changed files with 2551 additions and 14 deletions

View File

@@ -140,6 +140,7 @@ public class EntityMessage implements Serializable {
public Integer dsn;
public Boolean receipt_request;
public Address[] receipt_to;
public String bimi_selector;
public Boolean dkim;
public Boolean spf;
public Boolean dmarc;
@@ -526,6 +527,7 @@ public class EntityMessage implements Serializable {
Objects.equals(this.dsn, other.dsn) &&
Objects.equals(this.receipt_request, other.receipt_request) &&
MessageHelper.equal(this.receipt_to, other.receipt_to) &&
Objects.equals(this.bimi_selector, other.bimi_selector) &&
Objects.equals(this.dkim, other.dkim) &&
Objects.equals(this.spf, other.spf) &&
Objects.equals(this.dmarc, other.dmarc) &&