Page MenuHomePhorge

Fix PHP 8.1 "strlen(null)" exception when received email lacks From header
ClosedPublic

Authored by aklapper on Mar 31 2024, 11:54.
Tags
None
Referenced Files
F2987209: D25564.1740110762.diff
Thu, Feb 20, 04:06
F2982264: D25564.1739948780.diff
Tue, Feb 18, 07:06
F2980895: D25564.1739907037.diff
Mon, Feb 17, 19:30
F2976915: D25564.1739593101.diff
Fri, Feb 14, 04:18
F2961978: D25564.1739170743.diff
Sun, Feb 9, 06:59
F2961968: D25564.1739170700.diff
Sun, Feb 9, 06:58
F2961966: D25564.1739170696.diff
Sun, Feb 9, 06:58
F2961509: D25564.1739163729.diff
Sun, Feb 9, 05:02

Details

Summary

strlen() was used in Phabricator to check if a generic value is a non-empty string.
This behavior is deprecated since PHP 8.1. Phorge adopts phutil_nonempty_string() as a replacement.

Note: this may highlight other absurd input values that might be worth correcting
instead of just ignoring. If phutil_nonempty_string() throws an exception in your
instance, report it to Phorge to evaluate and fix that specific corner case.

ERROR 8192: strlen(): Passing null to parameter #1 ($string) of type string is deprecated at [/var/www/html/phorge/phorge/src/applications/metamta/storage/PhabricatorMetaMTAReceivedMail.php:527]

Closes T15767

Test Plan

See T15767

Diff Detail

Repository
rP Phorge
Lint
Lint Not Applicable
Unit
Tests Not Applicable