mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-28 02:37:16 +00:00
Added BIMI/DMARC pct check
This commit is contained in:
parent
3a6f9e9fc4
commit
1ae779b151
1 changed files with 9 additions and 4 deletions
|
@ -338,10 +338,15 @@ public class Bimi {
|
|||
Log.i("BIMI got TXT " + records[0].name);
|
||||
|
||||
Map<String, String> dmarc = MessageHelper.getKeyValues(records[0].name);
|
||||
String policy = dmarc.get("p");
|
||||
if (policy == null ||
|
||||
!DMARC_POLICIES.contains(policy.toLowerCase(Locale.ROOT)))
|
||||
throw new IllegalArgumentException("DMARC invalid policy=" + policy);
|
||||
|
||||
String p = dmarc.get("p");
|
||||
if (p == null ||
|
||||
!DMARC_POLICIES.contains(p.toLowerCase(Locale.ROOT)))
|
||||
throw new IllegalArgumentException("DMARC invalid p=" + p);
|
||||
|
||||
String pct = dmarc.get("pct");
|
||||
if (!TextUtils.isEmpty(pct) && !"100".equals(pct))
|
||||
throw new IllegalArgumentException("DMARC invalid pct=" + p);
|
||||
|
||||
verified = true;
|
||||
} catch (MalformedURLException ex) {
|
||||
|
|
Loading…
Reference in a new issue