Skip to content

Commit 7a80010

Browse files
committed
formatEmailAddresses catch also generic parse error. eventum#238
parser gives "The input exceeds the allowed length" error if headers are separated by semicolon zendframework/zend-mail#147 \Zend\Mail\Header\Exception\InvalidArgumentException extends \Zend\Mail\Exception\InvalidArgumentException so both exceptions covered
1 parent 78fc822 commit 7a80010

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/eventum/class.mail_helper.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public static function formatEmailAddresses($address)
152152
if (!$address instanceof Address) {
153153
try {
154154
$address = AddressHeader::fromString($address);
155-
} catch (\Zend\Mail\Header\Exception\InvalidArgumentException $e) {
155+
} catch (\Zend\Mail\Exception\InvalidArgumentException $e) {
156156
Logger::app()->error($e->getMessage(), ['address' => $address, 'exception' => $e]);
157157

158158
return AddressHeader::INVALID_ADDRESS;

0 commit comments

Comments
 (0)