summaryrefslogtreecommitdiff
path: root/plugins/password/drivers
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-04-22 11:51:14 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-04-22 11:51:14 +0000
commit0a714b7843736ef465221868354a95eee5cb6e92 (patch)
tree1a2546ef7dd9f3263cba48aefde70516fa71d295 /plugins/password/drivers
parentd24b11b949f7cd6c78f71aee0c51ea76399bb397 (diff)
- Password: chpasswd driver (#1486647)
git-svn-id: https://svn.roundcube.net/trunk@3533 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'plugins/password/drivers')
-rw-r--r--plugins/password/drivers/chpasswd.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/plugins/password/drivers/chpasswd.php b/plugins/password/drivers/chpasswd.php
new file mode 100644
index 000000000..ed15a054e
--- /dev/null
+++ b/plugins/password/drivers/chpasswd.php
@@ -0,0 +1,37 @@
+<?php
+
+/**
+ * chpasswd Driver
+ *
+ * Driver that adds functionality to change the systems user password via
+ * the 'chpasswd' command.
+ *
+ * For installation instructions please read the README file.
+ *
+ * @version 1.0
+ * @author Alex Cartwright <acartwright@mutinydesign.co.uk)
+ */
+
+function password_save($currpass, $newpass)
+{
+ $cmd = sprintf('echo \'%1$s:%2$s\' | %3$s; echo $?',
+ addcslashes($_SESSION['username'], "'"),
+ addcslashes($newpass, "'"),
+ rcmail::get_instance()->config->get('password_chpasswd_cmd'));
+
+ if (exec($cmd) == 0) {
+ return PASSWORD_SUCCESS;
+ }
+ else {
+ raise_error(array(
+ 'code' => 600,
+ 'type' => 'php',
+ 'file' => __FILE__,
+ 'message' => "Password plugin: Unable to execute $cmd"
+ ), true, false);
+ }
+
+ return PASSWORD_ERROR;
+}
+
+?>