snappymail/plugins/change-password-hestia/index.php

21 lines
468 B
PHP
Raw Normal View History

<?php
use \RainLoop\Exceptions\ClientException;
class ChangePasswordHestiaPlugin extends \RainLoop\Plugins\AbstractPlugin
{
const
NAME = 'Change Password Hestia',
AUTHOR = 'Jaap Marcus',
2023-05-18 04:33:06 +08:00
VERSION = '1.2',
2023-05-16 22:57:21 +08:00
RELEASE = '2023-05-16',
REQUIRED = '2.16.3',
CATEGORY = 'Security',
DESCRIPTION = 'Extension to allow users to change their passwords through HestiaCP';
public function Supported() : string
{
return 'Use Change Password plugin';
}
}