diff options
author | alecpl <alec@alec.pl> | 2010-02-06 17:59:41 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-02-06 17:59:41 +0000 |
commit | a65bf3a14b617d4af6749bab9e6ac7668fb99292 (patch) | |
tree | 8e272b42c6265e540a46d0d62d5157d206012ef0 /plugins/password/drivers | |
parent | 5cec0c6078e06b54c98ec014c59ddd63858df42a (diff) |
- Password: fix vpopmaild driver (#1486478)
Diffstat (limited to 'plugins/password/drivers')
-rw-r--r-- | plugins/password/drivers/vpopmaild.php | 65 |
1 files changed, 28 insertions, 37 deletions
diff --git a/plugins/password/drivers/vpopmaild.php b/plugins/password/drivers/vpopmaild.php index db57eaf70..b6fb39343 100644 --- a/plugins/password/drivers/vpopmaild.php +++ b/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; } ?> |