From cc30aee5180c777ef8438c6ed685b333b9a85d41 Mon Sep 17 00:00:00 2001 From: alec Date: Sat, 20 Jun 2009 13:21:10 +0000 Subject: - Password plugin: added poppassd driver git-svn-id: https://svn.roundcube.net/trunk@2668 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/plugins/password/password.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'roundcubemail/plugins/password/password.php') diff --git a/roundcubemail/plugins/password/password.php b/roundcubemail/plugins/password/password.php index 050053981..e97fa7d5d 100644 --- a/roundcubemail/plugins/password/password.php +++ b/roundcubemail/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 @@ class password extends rcube_plugin 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'); -- cgit v1.2.3