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
Plugin seems to work as intended but emits the following warning using php 8.2
[13-Jun-2024 17:06:43 Europe/Berlin] PHP Warning: Undefined array key 1 in /var/www/html/rc/vendor/pimlie/php-dkim/DKIM/Verify.php on line 143
[13-Jun-2024 17:06:43 Europe/Berlin] PHP Warning: Undefined array key 1 in /var/www/html/rc/vendor/pimlie/php-dkim/DKIM/Verify.php on line 273
The text was updated successfully, but these errors were encountered:
I didn't dig into the code but used array_pad - error is gone and plugin still seems to work.
In case someone wants to try:
line 143: list($cHeaderStyle, $cBodyStyle) = array_pad(explode('/', $dkim['c']), 2, null);
line 273: list($key, $val) = array_pad(explode('=', trim($part), 2), 2, null);
Plugin seems to work as intended but emits the following warning using php 8.2
The text was updated successfully, but these errors were encountered: