Store TLS indicator

This commit is contained in:
M66B
2022-01-06 22:46:11 +01:00
parent 956f2c1219
commit 4fc5ab9ff8
6 changed files with 2715 additions and 4 deletions

View File

@@ -144,6 +144,7 @@ public class EntityMessage implements Serializable {
public Boolean receipt_request;
public Address[] receipt_to;
public String bimi_selector;
public Boolean tls;
public Boolean dkim;
public Boolean spf;
public Boolean dmarc;
@@ -563,6 +564,7 @@ public class EntityMessage implements Serializable {
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.tls, other.tls) &&
Objects.equals(this.dkim, other.dkim) &&
Objects.equals(this.spf, other.spf) &&
Objects.equals(this.dmarc, other.dmarc) &&