mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-11-18 15:33:42 +08:00
17 lines
402 B
PHP
17 lines
402 B
PHP
<?php
|
|
|
|
class ChangePasswordPoppassdPlugin extends \RainLoop\Plugins\AbstractPlugin
|
|
{
|
|
const
|
|
NAME = 'Change Password Poppassd',
|
|
VERSION = '2.36',
|
|
RELEASE = '2024-03-17',
|
|
REQUIRED = '2.36.0',
|
|
CATEGORY = 'Security',
|
|
DESCRIPTION = 'Extension to allow users to change their passwords through Poppassd';
|
|
|
|
public function Supported() : string
|
|
{
|
|
return 'Use Change Password plugin';
|
|
}
|
|
}
|