mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 12:15:20 +08:00
869abb0469
Resets password via hostname:8083/reset/mail/ endpoint Should also work on VestaCP < 1.0.0 or after they have patched the bug in 1.0.x
20 lines
468 B
PHP
20 lines
468 B
PHP
<?php
|
|
|
|
use \RainLoop\Exceptions\ClientException;
|
|
|
|
class ChangePasswordHestiaPlugin extends \RainLoop\Plugins\AbstractPlugin
|
|
{
|
|
const
|
|
NAME = 'Change Password Hestia',
|
|
AUTHOR = 'Jaap Marcus',
|
|
VERSION = '1.0',
|
|
RELEASE = '2022-06-02',
|
|
REQUIRED = '2.16.3',
|
|
CATEGORY = 'Security',
|
|
DESCRIPTION = 'Extension to allow users to change their passwords through HestiaCP';
|
|
|
|
public function Supported() : string
|
|
{
|
|
return 'Use Change Password plugin';
|
|
}
|
|
}
|