From 4534ab8771aa563ba7628b78e2321a4322a13a9e Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Sat, 20 Jun 2009 09:21:10 -0400
Subject: [PATCH] - Password plugin: added poppassd driver

---
 plugins/password/password.php |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/plugins/password/password.php b/plugins/password/password.php
index 0500539..e97fa7d 100644
--- a/plugins/password/password.php
+++ b/plugins/password/password.php
@@ -3,7 +3,7 @@
 /*
  +-------------------------------------------------------------------------+
  | Password Plugin for Roundcube                                           |
- | Version 1.2                                                             |
+ | Version 1.3                                                             |
  |                                                                         |
  | Copyright (C) 2009, RoundCube Dev. - Switzerland                        |
  |                                                                         |
@@ -30,6 +30,7 @@
 
 define('PASSWORD_CRYPT_ERROR', 1);
 define('PASSWORD_ERROR', 2);
+define('PASSWORD_CONNECT_ERROR', 3);
 define('PASSWORD_SUCCESS', 0);
 
 class password extends rcube_plugin
@@ -192,7 +193,9 @@
       case PASSWORD_SUCCESS:
         return;
       case PASSWORD_CRYPT_ERROR;
-        return $this->gettext('nocryptfunction');
+        return $this->gettext('crypterror');
+      case PASSWORD_CONNECT_ERROR;
+        return $this->gettext('connecterror');
       case PASSWORD_ERROR:
       default:
         return $this->gettext('internalerror');

--
Gitblit v1.9.1