X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Flogin.php;h=fba85c64d192d02c016d6480a73fffd10b5edff0;hb=c8e1425b8bc67eefde50972d45c674c8395d2d19;hp=2b56300bbdc04460baca2c22db972a2af4bb3bc1;hpb=2af33d1ba0830953e089cf0caeaf778042531fb9;p=squirrelmail.git diff --git a/src/login.php b/src/login.php index 2b56300b..fba85c64 100644 --- a/src/login.php +++ b/src/login.php @@ -1,151 +1,185 @@ $v) - { - $key = strtolower($k); - $value = urlencode($v); - if ($key == 'cc') - $rcptaddress .= '&send_to_cc=' . $value; - elseif ($key == 'bcc') - $rcptaddress .= '&send_to_bcc=' . $value; - elseif ($key == 'subject') - $rcptaddress .= '&subject=' . $value; - elseif ($key == 'body') - $rcptaddress .= '&body=' . $value; - } - - // Double-encode in this fashion to get past redirect.php properly - $rcptaddress = urlencode($rcptaddress); - } - - require_once('../functions/strings.php'); - require_once('../config/config.php'); - require_once('../functions/i18n.php'); - require_once('../functions/plugin.php'); - - // $squirrelmail_language is set by a cookie when the user selects - // language and logs out - set_up_language($squirrelmail_language, true); - - // Need the base URI to set the cookies. (Same code as in webmail.php) - ereg ("(^.*/)[^/]+/[^/]+$", $PHP_SELF, $regs); - $base_uri = $regs[1]; - - if ( session_id() <> '' ) { - session_destroy(); - // In case the last session was not terminated properly, make sure - // we get a new one. - $cookie_params = session_get_cookie_params(); - setcookie(session_name(),'',0,$cookie_params['path'].$cookie_params['domain']); - } - setcookie('username', '', 0, $base_uri); - setcookie('key', '', 0, $base_uri); - header ('Pragma: no-cache'); - - do_hook('login_cookie'); - - echo '' . - "\n\n" . - "\n" . - "\n"; - - if ($theme_css != "") - echo "\n"; - - echo ''; - echo $org_name . ' - ' . _("Login"); - echo "\n"; - echo "\n"; - echo "
\n"; - - $username_form_name = 'login_username'; - $password_form_name = 'secretkey'; - do_hook('login_top'); - - echo "
\n"; - echo "
"; - printf (_("SquirrelMail version %s"), $version); - echo "
\n"; - echo _("By the SquirrelMail Development Team"); - echo "
\n"; - echo "\n"; - echo " \n"; - echo " \n"; - echo " \n"; - echo " \n"; - echo " \n"; - echo " \n"; - echo " \n"; - echo "
\n"; - echo "
"; - printf (_("%s Login"), $org_name); - echo "
\n"; - echo "
\n"; - echo " \n"; - echo " \n"; - echo " \n"; - echo " \n"; - echo " \n"; - if ($rcptaddress != '') { - echo " \n"; - } - echo " \n"; - echo "
\n"; - echo _("Name:"); - echo " \n"; - echo " \n"; - echo "
\n"; - echo _("Password:"); - echo " \n"; - echo " \n"; - echo "
\n"; - echo "
\n"; - echo '
\n"; - echo "
\n"; - echo "\n"; - do_hook('login_form'); - echo "\n"; - do_hook('login_bottom'); -?> - - +/** + * login.php -- simple login screen + * + * Copyright (c) 1999-2002 The SquirrelMail Project Team + * Licensed under the GNU GPL. For full terms see the file COPYING. + * + * This a simple login screen. Some housekeeping is done to clean + * cookies and find language. + * + * $Id$ + */ + +$rcptaddress = ''; +if (isset($emailaddress)) { + if (stristr($emailaddress, 'mailto:')) { + $rcptaddress = substr($emailaddress, 7); + } else { + $rcptaddress = $emailaddress; + } + + if (($pos = strpos($rcptaddress, '?')) !== false) { + $a = substr($rcptaddress, $pos + 1); + $rcptaddress = substr($rcptaddress, 0, $pos); + $a = explode('=', $a, 2); + if (isset($a[1])) { + $name = urldecode($a[0]); + $val = urldecode($a[1]); + global $$name; + $$name = $val; + } + } + + /* At this point, we have parsed a lot of the mailto stuff. */ + /* Let's do the rest -- CC, BCC, Subject, Body */ + /* Note: They can all be case insensitive */ + foreach ($GLOBALS as $k => $v) { + $key = strtolower($k); + $value = urlencode($v); + if ($key == 'cc') { + $rcptaddress .= '&send_to_cc=' . $value; + } else if ($key == 'bcc') { + $rcptaddress .= '&send_to_bcc=' . $value; + } else if ($key == 'subject') { + $rcptaddress .= '&subject=' . $value; + } else if ($key == 'body') { + $rcptaddress .= '&body=' . $value; + } + } + + /* Double-encode in this fashion to get past redirect.php properly. */ + $rcptaddress = urlencode($rcptaddress); +} + +require_once('../functions/strings.php'); +require_once('../config/config.php'); +require_once('../functions/i18n.php'); +require_once('../functions/plugin.php'); +require_once('../functions/constants.php'); +require_once('../functions/page_header.php'); +require_once('../functions/html.php'); + +/* + * $squirrelmail_language is set by a cookie when the user selects + * language and logs out + */ +set_up_language($squirrelmail_language, TRUE); + +/** + * Find out the base URI to set cookies. + */ +if (!function_exists('sqm_baseuri')){ + require_once('../functions/display_messages.php'); +} +$base_uri = sqm_baseuri(); +@session_destroy(); + +/* + * In case the last session was not terminated properly, make sure + * we get a new one. + */ +$cookie_params = session_get_cookie_params(); +setcookie(session_name(), '', 0, $cookie_params['path'], + $cookie_params['domain']); +setcookie('username', '', 0, $base_uri); +setcookie('key', '', 0, $base_uri); +header('Pragma: no-cache'); + +do_hook('login_cookie'); + +/* Output the javascript onload function. */ + +$header = "\n"; +$custom_css = 'none'; +displayHtmlHeader( "$org_name - " . _("Login"), $header, FALSE ); + +/* Set the title of this page. */ +echo ''; + +$username_form_name = 'login_username'; +$password_form_name = 'secretkey'; +do_hook('login_top'); + +$loginname_value = (isset($loginname) ? htmlspecialchars($loginname) : ''); + +/* Display width and height like good little people */ +$width_and_height = ''; +if (isset($org_logo_width) && is_numeric($org_logo_width) && $org_logo_width>0) { + $width_and_height = " width=\"$org_logo_width\""; +} +if (isset($org_logo_height) && is_numeric($org_logo_height) && $org_logo_height>0) { + $width_and_height .= " height=\"$org_logo_height\""; +} + +$rcptaddress_input = ''; +if ($rcptaddress != '') { + $rcptaddress_input = ''; +} + +echo "\n" . '
' . "\n" . +html_tag( 'table', + html_tag( 'tr', + html_tag( 'td', + '
'. + '' . sprintf(_(
' . "\n". + ( $hide_sm_attributions ? '' : + '' . sprintf (_("SquirrelMail version %s"), $version) . '
' ."\n". + ' ' . _("By the SquirrelMail Development Team") . '
' . "\n" ) . + html_tag( 'table', + html_tag( 'tr', + html_tag( 'td', + '' . sprintf (_("%s Login"), $org_name) . "\n", + 'center', '#DCDCDC' ) + ) . + html_tag( 'tr', + html_tag( 'td', "\n" . + html_tag( 'table', + html_tag( 'tr', + html_tag( 'td', + _("Name:") , + 'right', '', 'width="30%"' ) . + html_tag( 'td', + '' , + 'left', '', 'width="*"' ) + ) . "\n" . + html_tag( 'tr', + html_tag( 'td', + _("Password:") , + 'right', '', 'width="30%"' ) . + html_tag( 'td', + '' . "\n" . + '' . "\n" . + '' . "\n" . + $rcptaddress_input . "\n" , + 'left', '', 'width="*"' ) + ) , + 'center', '#ffffff', 'border="0" cols="2" width="100%"' ) , + 'left', '#FFFFFF' ) + ) . + html_tag( 'tr', + html_tag( 'td', + '
', + 'left' ) + ), + '', '#ffffff', 'border="0" cols="1" width="350"' ), + 'center' ) + ) , +'', '#ffffff', 'border="0" cellspacing="0" cellpadding="0" width="100%"' ) . +'' . "\n"; + +do_hook('login_form'); + +do_hook('login_bottom'); +echo "\n". + "\n"; +?>