You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While processing Header-Field (e.g From) by using module/core/message_functions.php::process_address_fld($fld) address is cutted:
Raimund Matthias Domrös matthias@domroes.net
is converted to
Raimund Matthias Domrös matthias@domroes.ne
The last t is omitted!
Error is caused by function addr_split. The function is coded as iteration over bytes but mb_strlen (counts charactes!) is used to calculate $max (line 500) .
Version & Environment
Release 2.2.0 / file message_functions.php of master is unchanged.
The text was updated successfully, but these errors were encountered:
🐛 Bugreport
While processing Header-Field (e.g From) by using module/core/message_functions.php::process_address_fld($fld) address is cutted:
Raimund Matthias Domrös matthias@domroes.net
is converted to
Raimund Matthias Domrös matthias@domroes.ne
The last t is omitted!
Error is caused by function addr_split. The function is coded as iteration over bytes but mb_strlen (counts charactes!) is used to calculate $max (line 500) .
Version & Environment
Release 2.2.0 / file message_functions.php of master is unchanged.
The text was updated successfully, but these errors were encountered: