snappymail/plugins/change-password-poppassd/index.php
2022-11-07 11:48:46 +01:00

19 lines
445 B
PHP

<?php
use \RainLoop\Exceptions\ClientException;
class ChangePasswordPoppassdPlugin extends \RainLoop\Plugins\AbstractPlugin
{
const
NAME = 'Change Password Poppassd',
VERSION = '2.17',
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';
}
}