mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-09 01:26:50 +01:00
75 lines
2.5 KiB
PHP
75 lines
2.5 KiB
PHP
<?php
|
|
/**
|
|
* tinycp driver
|
|
*
|
|
* Enable the password driver in Roundcube (https://roundcube.net/) for the TinyCP Lightweight Linux Control Panel (https://tinycp.com/).
|
|
*
|
|
* @version 1.1
|
|
* @author Ricky Mendoza (HelloWorld@rickymendoza.dev)
|
|
*
|
|
* Copyright (C) 2020 Ricky Mendoza
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
require_once("TinyCPConnector.php");
|
|
|
|
class rcube_tinycp_password
|
|
{
|
|
public function save($currpass, $newpass, $username)
|
|
{
|
|
$tinycp_host = rcmail::get_instance()->config->get('tinycp_host');
|
|
$tinycp_port = rcmail::get_instance()->config->get('tinycp_port');
|
|
$tinycp_user = rcmail::get_instance()->config->get('tinycp_user');
|
|
$tinycp_pass = rcmail::get_instance()->config->get('tinycp_pass');
|
|
|
|
|
|
if (!$tinycp_host || !$tinycp_port || !$tinycp_user || !$tinycp_pass){
|
|
$this->PluginError("Missing configuration value(s). ");
|
|
return PASSWORD_ERROR;
|
|
}
|
|
|
|
$tcp = new TinyCPConnector($tinycp_host,$tinycp_port);
|
|
|
|
try {
|
|
$auth = $tcp->Auth($tinycp_user, $tinycp_pass);
|
|
} catch (\Exception $th) {
|
|
$this->PluginError("Unable to Authenticate:".$th->getMessage());
|
|
return PASSWORD_ERROR;
|
|
}
|
|
|
|
try {
|
|
$response = $tcp->mail___mailserver___email_pass_change2($username, $newpass);
|
|
} catch (\Exception $th) {
|
|
$this->PluginError("Unable to change password:".$th->getMessage());
|
|
return PASSWORD_ERROR;
|
|
}
|
|
|
|
if ($response){
|
|
$this->PluginError("Error:". $response);
|
|
return PASSWORD_ERROR;
|
|
}
|
|
return PASSWORD_SUCCESS;
|
|
}
|
|
|
|
public function PluginError($message){
|
|
rcube::raise_error(array(
|
|
'code' => 600,
|
|
'type' => 'php',
|
|
'file' => __FILE__, 'line' => __LINE__,
|
|
'message' => $message
|
|
), true, false);
|
|
}
|
|
}
|
|
?>
|