zendframework/zend-mime

A logical bug occurs while splitting header field

akmandev opened this issue · 2 comments

According to https://tools.ietf.org/html/rfc5322, the following email address example is completely ok:

"Some Name" <email@address.com>

But when you pass this value to Zend\Mime\Decoder::splitHeaderField(); it returns a wrong value because of a logical bug in the code (Line #181, the condition is not correct for all cases):

Expected results

"Some Name" <email@address.com>

Actual results

"Some Name" <email@address.com

So, in the actual result, the last character is missing.


I would like to create a merge request with valid tests if you think this should be fixed.

@ozanakman sure, please submit PR. Thanks!

This repository has been closed and moved to laminas/laminas-mime; a new issue has been opened at laminas/laminas-mime#2.