Fix off-by-one error in Message ID header count check in Util\Emailer
This commit is contained in:
parent
b9fe8ee38f
commit
a2afb101cd
|
@ -141,7 +141,7 @@ class Emailer
|
||||||
$countMessageId += count($value);
|
$countMessageId += count($value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ($countMessageId > 0) {
|
if ($countMessageId > 1) {
|
||||||
$this->logger->warning('More than one Message-ID found - RFC violation', ['email' => $email]);
|
$this->logger->warning('More than one Message-ID found - RFC violation', ['email' => $email]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user