From 0ae7b11776a54fda4f7075025fc45b3d70a32912 Mon Sep 17 00:00:00 2001 From: Jaap Marcus <9754650+jaapmarcus@users.noreply.github.com> Date: Wed, 17 May 2023 22:28:03 +0200 Subject: [PATCH 1/2] Fix HestiaCP password change --- plugins/change-password-hestia/driver.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/change-password-hestia/driver.php b/plugins/change-password-hestia/driver.php index d177123b8..4ffa0a1c0 100644 --- a/plugins/change-password-hestia/driver.php +++ b/plugins/change-password-hestia/driver.php @@ -47,7 +47,7 @@ class ChangePasswordHestiaDriver $this->oLogger->Write("Hestia: Try to change password for {$oAccount->Email()}"); - $sHost = $this->oConfig->Get('plugin', 'hestia_login'); + $sHost = $this->oConfig->Get('plugin', 'hestia_host'); $sPort = $this->oConfig->Get('plugin', 'hestia_port'); $HTTP = \SnappyMail\HTTP\Request::factory(); From 4cee2462813805bff9f97d91f6efe33b5fef583d Mon Sep 17 00:00:00 2001 From: Jaap Marcus <9754650+jaapmarcus@users.noreply.github.com> Date: Wed, 17 May 2023 22:33:06 +0200 Subject: [PATCH 2/2] Update index.php --- plugins/change-password-hestia/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/change-password-hestia/index.php b/plugins/change-password-hestia/index.php index a5a4b4054..d19d30667 100644 --- a/plugins/change-password-hestia/index.php +++ b/plugins/change-password-hestia/index.php @@ -7,7 +7,7 @@ class ChangePasswordHestiaPlugin extends \RainLoop\Plugins\AbstractPlugin const NAME = 'Change Password Hestia', AUTHOR = 'Jaap Marcus', - VERSION = '1.1', + VERSION = '1.2', RELEASE = '2023-05-16', REQUIRED = '2.16.3', CATEGORY = 'Security',