mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-14 11:44:54 +08:00
19 lines
445 B
PHP
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';
|
|
}
|
|
}
|