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

20 lines
445 B
PHP
Raw Normal View History

2022-04-29 17:30:11 +08:00
<?php
use \RainLoop\Exceptions\ClientException;
class ChangePasswordPoppassdPlugin extends \RainLoop\Plugins\AbstractPlugin
{
const
NAME = 'Change Password Poppassd',
2022-11-07 18:48:46 +08:00
VERSION = '2.17',
2022-05-20 13:44:18 +08:00
RELEASE = '2022-05-20',
2022-05-14 04:58:09 +08:00
REQUIRED = '2.15.3',
2022-04-29 17:30:11 +08:00
CATEGORY = 'Security',
DESCRIPTION = 'Extension to allow users to change their passwords through Poppassd';
public function Supported() : string
{
return 'Use Change Password plugin';
}
}