mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-29 05:15:13 +02:00
SPF ip-records have an optional prefix appended
This commit is contained in:
@@ -272,9 +272,11 @@ public class ActivityDmarc extends ActivityBase {
|
||||
ip = ip.toLowerCase(Locale.ROOT);
|
||||
if (ip.startsWith("ip4:") || ip.startsWith("ip6:")) {
|
||||
String[] net = ip.substring(4).split("/");
|
||||
if (net.length != 2)
|
||||
if (net.length > 2)
|
||||
continue;
|
||||
Integer prefix = Helper.parseInt(net[1]);
|
||||
Integer prefix = ip.startsWith("ip4:") ? 32 : 64;
|
||||
if (net.length == 2)
|
||||
prefix = Helper.parseInt(net[1]);
|
||||
if (prefix == null)
|
||||
continue;
|
||||
if (ConnectionHelper.inSubnet(text, net[0], prefix)) {
|
||||
|
||||
Reference in New Issue
Block a user