From 63a3dc5fde5a3ceed4f03c19c5015aab19050bee Mon Sep 17 00:00:00 2001 From: till Date: Sat, 20 Mar 2010 14:20:01 +0000 Subject: moved plugins --- plugins/autologon/autologon.php | 45 ----------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 plugins/autologon/autologon.php (limited to 'plugins/autologon') diff --git a/plugins/autologon/autologon.php b/plugins/autologon/autologon.php deleted file mode 100644 index bc3d2ee76..000000000 --- a/plugins/autologon/autologon.php +++ /dev/null @@ -1,45 +0,0 @@ -add_hook('startup', array($this, 'startup')); - $this->add_hook('authenticate', array($this, 'authenticate')); - } - - function startup($args) - { - $rcmail = rcmail::get_instance(); - - // change action to login - if (empty($_SESSION['user_id']) && !empty($_GET['_autologin']) && $this->is_localhost()) - $args['action'] = 'login'; - - return $args; - } - - function authenticate($args) - { - if (!empty($_GET['_autologin']) && $this->is_localhost()) { - $args['user'] = 'me'; - $args['pass'] = '******'; - $args['host'] = 'localhost'; - } - - return $args; - } - - function is_localhost() - { - return $_SERVER['REMOTE_ADDR'] == '::1' || $_SERVER['REMOTE_ADDR'] == '127.0.0.1'; - } - -} - -- cgit v1.2.3