diff options
| author | netbit <netbit@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-09-20 10:14:04 +0000 |
|---|---|---|
| committer | netbit <netbit@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-09-20 10:14:04 +0000 |
| commit | a266a56bfa1a51b45d79213c26c30e43ec08a2af (patch) | |
| tree | a02b9c8172401ab05f11563572d5fb0f9981493b /roundcubemail/plugins/password/drivers | |
| parent | d271ef9862f5d62211c15572b288958a36946307 (diff) | |
- Password plugin: added vpopmaild driver
git-svn-id: https://svn.roundcube.net/trunk@2973 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/plugins/password/drivers')
| -rw-r--r-- | roundcubemail/plugins/password/drivers/vpopmaild.php | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/roundcubemail/plugins/password/drivers/vpopmaild.php b/roundcubemail/plugins/password/drivers/vpopmaild.php new file mode 100644 index 000000000..b44734036 --- /dev/null +++ b/roundcubemail/plugins/password/drivers/vpopmaild.php @@ -0,0 +1,57 @@ +<?php + +/** + * vpopmail Password Driver + * + * Driver to change passwords via vpopmaild + * + * @version 1.0 + * @author Johannes Hessellund + * + */ + +function password_save($curpass, $passwd) +{ + $rcmail = rcmail::get_instance(); +// 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))) { + 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->disconnect(); + return PASSWORD_ERROR; + } + else { + $vpopmaild->writeLine("mod_user ". $_SESSION['username']); + $result = $vpopmaild->readLine(); + if(!preg_match('/^\+OK/', $result) ) { + $vpopmaild->disconnect(); + return PASSWORD_ERROR; + } + else { + $vpopmaild->writeLine("clear_text_password ". $passwd); + $vpopmaild->writeLine("."); + $result = $vpopmaild->readLine(); + $vpopmaild->disconnect(); + if (!preg_match('/^\+OK/', $result)) + return PASSWORD_ERROR; + else + return PASSWORD_SUCCESS; + } + } + } + } +} + +?> |
