snappymail/plugins/change-password-poppassd/index.php
2022-05-20 07:44:18 +02:00

19 lines
445 B
PHP

<?php
use \RainLoop\Exceptions\ClientException;
class ChangePasswordPoppassdPlugin extends \RainLoop\Plugins\AbstractPlugin
{
const
NAME = 'Change Password Poppassd',
VERSION = '2.16',
RELEASE = '2022-05-20',
REQUIRED = '2.15.3',
CATEGORY = 'Security',
DESCRIPTION = 'Extension to allow users to change their passwords through Poppassd';
public function Supported() : string
{
return 'Use Change Password plugin';
}
}