From c33cda1f9163deb95beefa5c8f27324644eaac76 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Fri, 19 Mar 2010 14:58:59 -0400
Subject: [PATCH] - describe config
---
plugins/http_authentication/http_authentication.php | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/plugins/http_authentication/http_authentication.php b/plugins/http_authentication/http_authentication.php
index 57422a7..a8003cf 100644
--- a/plugins/http_authentication/http_authentication.php
+++ b/plugins/http_authentication/http_authentication.php
@@ -5,11 +5,12 @@
*
* Make use of an existing HTTP authentication and perform login with the existing user credentials
*
- * @version 1.0
+ * @version 1.1
* @author Thomas Bruederli
*/
class http_authentication extends rcube_plugin
{
+ public $task = 'login';
function init()
{
@@ -20,7 +21,7 @@
function startup($args)
{
// change action to login
- if ($args['task'] == 'mail' && empty($args['action']) && empty($_SESSION['user_id'])
+ if (empty($args['action']) && empty($_SESSION['user_id'])
&& !empty($_SERVER['PHP_AUTH_USER']) && !empty($_SERVER['PHP_AUTH_PW']))
$args['action'] = 'login';
@@ -33,6 +34,8 @@
$args['user'] = $_SERVER['PHP_AUTH_USER'];
$args['pass'] = $_SERVER['PHP_AUTH_PW'];
}
+
+ $args['cookiecheck'] = false;
return $args;
}
--
Gitblit v1.9.1