mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-23 14:26:18 +08:00
19 lines
453 B
PHP
19 lines
453 B
PHP
<?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';
|
|
}
|
|
}
|