Added hMailServer change password for #551

This commit is contained in:
the-djmaze 2022-10-14 14:41:24 +02:00
parent 0910b8f27d
commit 258afdd26e
2 changed files with 104 additions and 0 deletions

View file

@ -0,0 +1,19 @@
<?php
use \RainLoop\Exceptions\ClientException;
class ChangePasswordHMailServerPlugin extends \RainLoop\Plugins\AbstractPlugin
{
const
NAME = 'Change Password hMailServer',
VERSION = '2.0',
RELEASE = '2022-10-14',
REQUIRED = '2.15.3',
CATEGORY = 'Security',
DESCRIPTION = 'Extension to allow users to change their passwords through hMailServer';
public function Supported() : string
{
return 'Use Change Password plugin';
}
}