s/Deliver_SentMail/Deliver_SendMail/
[squirrelmail.git] / src / login.php
index fba85c64d192d02c016d6480a73fffd10b5edff0..dd73704f69a6504119d72a40de2ce88dfad0987a 100644 (file)
  * $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');
@@ -120,11 +79,6 @@ if (isset($org_logo_height) && is_numeric($org_logo_height) && $org_logo_height>
     $width_and_height .= " height=\"$org_logo_height\"";
 }
 
-$rcptaddress_input = '';
-if ($rcptaddress != '') {
-    $rcptaddress_input = '<input type="hidden" name="rcptemail" value="htmlspecialchars(' . $rcptaddress . ')">';
-}
-
 echo "\n" . '<form action="redirect.php" method="post">' . "\n" .
 html_tag( 'table',
     html_tag( 'tr',
@@ -159,8 +113,7 @@ html_tag( 'table',
                                 html_tag( 'td',
                                     '<input type="password" name="' . $password_form_name . '">' . "\n" .
                                     '<input type=hidden name="js_autodetect_results" value="SMPREF_JS_OFF">' . "\n" .
-                                    '<input type=hidden name="just_logged_in" value=1>' . "\n" .
-                                    $rcptaddress_input . "\n" ,
+                                    '<input type=hidden name="just_logged_in" value=1>' . "\n",
                                 'left', '', 'width="*"' )
                             ) ,
                         'center', '#ffffff', 'border="0" cols="2" width="100%"' ) ,