From 6873623e8390834a689397cfe1e8d314b3634b4a Mon Sep 17 00:00:00 2001 From: Baraka Kinywa Date: Sat, 21 Sep 2024 17:41:09 +0200 Subject: [PATCH] [FIX]hm-smtp.php: Declare properties to avoid deprecated dynamic properties creation in PHP 8.2+ --- modules/smtp/hm-smtp.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/smtp/hm-smtp.php b/modules/smtp/hm-smtp.php index 29066092a7..b692449eba 100644 --- a/modules/smtp/hm-smtp.php +++ b/modules/smtp/hm-smtp.php @@ -80,6 +80,9 @@ class Hm_SMTP { public $state; private $request_auths = array(); private $scramAuthenticator; + private $supports_tls; + private $supports_auth; + private $max_message_size; function __construct($conf) { $this->scramAuthenticator = new ScramAuthenticator();