diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-02-06 17:59:41 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-02-06 17:59:41 +0000 |
| commit | 99cddf34ce03bf903c06cc1fefcbdea53ed4edcb (patch) | |
| tree | 09a2935b6d16869792149a5e00ac1dac99f64132 /roundcubemail/plugins | |
| parent | 739d507303635f99eb5d5e0ef61e61e5cfc71303 (diff) | |
- Password: fix vpopmaild driver (#1486478)
git-svn-id: https://svn.roundcube.net/trunk@3257 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/plugins')
| -rw-r--r-- | roundcubemail/plugins/password/drivers/vpopmaild.php | 65 | ||||
| -rw-r--r-- | roundcubemail/plugins/password/password.php | 3 |
2 files changed, 29 insertions, 39 deletions
diff --git a/roundcubemail/plugins/password/drivers/vpopmaild.php b/roundcubemail/plugins/password/drivers/vpopmaild.php index db57eaf70..b6fb39343 100644 --- a/roundcubemail/plugins/password/drivers/vpopmaild.php +++ b/roundcubemail/plugins/password/drivers/vpopmaild.php @@ -5,7 +5,7 @@ * * Driver to change passwords via vpopmaild * - * @version 1.0 + * @version 1.1 * @author Johannes Hessellund * */ @@ -16,45 +16,36 @@ function password_save($curpass, $passwd) // include('Net/Socket.php'); $vpopmaild = new Net_Socket(); - if (PEAR::isError($vpopmaild->connect($rcmail->config->get('password_vpopmaild_host'), $rcmail->config->get('password_vpopmaild_port'), null))) { + if (PEAR::isError($vpopmaild->connect($rcmail->config->get('password_vpopmaild_host'), + $rcmail->config->get('password_vpopmaild_port'), null))) { return PASSWORD_CONNECT_ERROR; } - else { - $result = $vpopmaild->readLine(); - if(!preg_match('/^\+OK/', $result)) { - $vpopmaild->disconnect(); - return PASSWORD_CONNECT_ERROR; - } - else { - $vpopmaild->writeLine("slogin ". $_SESSION['username'] . " " . $curpass); - $result = $vpopmaild->readLine(); - if(!preg_match('/^\+OK/', $result) ) { - $vpopmaild->writeLine("quit"); - $vpopmaild->disconnect(); - return PASSWORD_ERROR; - } - else { - $vpopmaild->writeLine("mod_user ". $_SESSION['username']); - $result = $vpopmaild->readLine(); - if(!preg_match('/^\+OK/', $result) ) { - $vpopmaild->writeLine("quit"); - $vpopmaild->disconnect(); - return PASSWORD_ERROR; - } - else { - $vpopmaild->writeLine("clear_text_password ". $passwd); - $vpopmaild->writeLine("."); - $result = $vpopmaild->readLine(); - $vpopmaild->writeLine("quit"); - $vpopmaild->disconnect(); - if (!preg_match('/^\+OK/', $result)) - return PASSWORD_ERROR; - else - return PASSWORD_SUCCESS; - } - } - } + + $result = $vpopmaild->readLine(); + if(!preg_match('/^\+OK/', $result)) { + $vpopmaild->disconnect(); + return PASSWORD_CONNECT_ERROR; + } + + $vpopmaild->writeLine("slogin ". $_SESSION['username'] . " " . $curpass); + $result = $vpopmaild->readLine(); + if(!preg_match('/^\+OK/', $result) ) { + $vpopmaild->writeLine("quit"); + $vpopmaild->disconnect(); + return PASSWORD_ERROR; } + + $vpopmaild->writeLine("mod_user ". $_SESSION['username']); + $vpopmaild->writeLine("clear_text_password ". $passwd); + $vpopmaild->writeLine("."); + $result = $vpopmaild->readLine(); + $vpopmaild->writeLine("quit"); + $vpopmaild->disconnect(); + + if (!preg_match('/^\+OK/', $result)) + return PASSWORD_ERROR; + + return PASSWORD_SUCCESS; } ?> diff --git a/roundcubemail/plugins/password/password.php b/roundcubemail/plugins/password/password.php index a03d3540a..4f34e40d2 100644 --- a/roundcubemail/plugins/password/password.php +++ b/roundcubemail/plugins/password/password.php @@ -3,7 +3,7 @@ /* +-------------------------------------------------------------------------+ | Password Plugin for Roundcube | - | Version 1.3.1 | + | Version 1.3.2 | | | | Copyright (C) 2009, RoundCube Dev. | | | @@ -42,7 +42,6 @@ define('PASSWORD_SUCCESS', 0); * * For installation and configuration instructions please read the README file. * - * @version 1.3.1 * @author Aleksander Machniak */ class password extends rcube_plugin |
