Add change-password-mailcow driver

This commit is contained in:
Jude Venn 2024-07-25 10:37:09 +01:00
parent e4316e6665
commit f21dd94f2c
2 changed files with 92 additions and 0 deletions

View file

@ -0,0 +1,18 @@
<?php
class ChangePasswordMailcowPlugin extends \RainLoop\Plugins\AbstractPlugin
{
const
NAME = 'Change Password Mailcow',
AUTHOR = 'Cuttlefish',
VERSION = '2.36',
RELEASE = '2024-07-25',
REQUIRED = '2.36.0',
CATEGORY = 'Security',
DESCRIPTION = 'Extension to allow users to change their passwords through Mailcow';
public function Supported() : string
{
return 'Use Change Password plugin';
}
}