X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=functions%2Fmime.php;h=4e2ac6c5407b1bd3a2e134a48ae8100de769bc8b;hp=7704e9303f3b061005edc705c4560ed5f0e2572c;hb=cef054e43ed3267ec7c3f9915271747b43992b0c;hpb=10dec454f7aeb0be71c75094c3b0c6990d8b1c5e diff --git a/functions/mime.php b/functions/mime.php index 7704e930..4e2ac6c5 100644 --- a/functions/mime.php +++ b/functions/mime.php @@ -3,7 +3,7 @@ /** * mime.php * - * Copyright (c) 1999-2002 The SquirrelMail Project Team + * Copyright (c) 1999-2003 The SquirrelMail Project Team * Licensed under the GNU GPL. For full terms see the file COPYING. * * This contains the functions necessary to detect and decode MIME @@ -12,8 +12,8 @@ * $Id$ */ -require_once('../functions/imap.php'); -require_once('../functions/attachment_common.php'); +require_once(SM_PATH . 'functions/imap.php'); +require_once(SM_PATH . 'functions/attachment_common.php'); /* --------------------------------------------------------------------------------- */ /* MIME DECODING */ @@ -26,52 +26,65 @@ require_once('../functions/attachment_common.php'); function mime_structure ($bodystructure, $flags=array()) { - // isolate the body structure and remove beginning and end parenthesis + /* Isolate the body structure and remove beginning and end parenthesis. */ $read = trim(substr ($bodystructure, strpos(strtolower($bodystructure), 'bodystructure') + 13)); - $msg = &new message(); $read = trim(substr ($read, 0, -1)); - $res = $msg->parseStructure($read); - $msg = $res[0]; - $msg->setEnt('0'); + $i = 0; + $msg = Message::parseStructure($read,$i); + if (!is_object($msg)) { + include_once(SM_PATH . 'functions/display_messages.php'); + global $color, $mailbox; + displayPageHeader( $color, urldecode($mailbox) ); + echo "\n\n" . + '
'; + $errormessage = _("SquirrelMail could not decode the bodystructure of the message"); + $errormessage .= '
'._("the provided bodystructure by your imap-server").':

'; + $errormessage .= '
' . htmlspecialchars($read) . '
'; + plain_error_message( $errormessage, $color ); + echo ''; + exit; + } if (count($flags)) { foreach ($flags as $flag) { $char = strtoupper($flag{1}); switch ($char) { - case 'S': - if (strtolower($flag) == '\\seen') { - $msg->is_seen = true; - } - break; - case 'A': - if (strtolower($flag) == '\\answered') { - $msg->is_answered = true; - } - break; - case 'D': - if (strtolower($flag) == '\\deleted') { - $msg->is_deleted = true; - } - break; - case 'F': - if (strtolower($flag) == '\\flagged') { - $msg->is_flagged = true; - } - break; - case 'M': - if (strtolower($flag) == '$mdnsent') { - $msg->is_mdnsent = true; - } - break; - default: - break; + case 'S': + if (strtolower($flag) == '\\seen') { + $msg->is_seen = true; + } + break; + case 'A': + if (strtolower($flag) == '\\answered') { + $msg->is_answered = true; + } + break; + case 'D': + if (strtolower($flag) == '\\deleted') { + $msg->is_deleted = true; + } + break; + case 'F': + if (strtolower($flag) == '\\flagged') { + $msg->is_flagged = true; + } + break; + case 'M': + if (strtolower($flag) == '$mdnsent') { + $msg->is_mdnsent = true; + } + break; + default: + break; } } } // listEntities($msg); - return( $msg ); + return $msg; } -/* this starts the parsing of a particular structure. It is called recursively, + + +/* This starts the parsing of a particular structure. It is called recursively, * so it can be passed different structures. It returns an object of type * $message. * First, it checks to see if it is a multipart message. If it is, then it @@ -80,58 +93,54 @@ function mime_structure ($bodystructure, $flags=array()) { * to mime_get_elements() */ -function mime_fetch_body($imap_stream, $id, $ent_id) { +function mime_fetch_body($imap_stream, $id, $ent_id=1) { global $uid_support; - /* - * do a bit of error correction. If we couldn't find the entity id, just guess + /* Do a bit of error correction. If we couldn't find the entity id, just guess * that it is the first one. That is usually the case anyway. */ if (!$ent_id) { - $ent_id = 1; + $cmd = "FETCH $id BODY[]"; + } else { + $cmd = "FETCH $id BODY[$ent_id]"; } - $cmd = "FETCH $id BODY[$ent_id]"; - + $data = sqimap_run_command ($imap_stream, $cmd, true, $response, $message, $uid_support); do { - $topline = trim(array_shift( $data )); - } while( $topline && $topline[0] == '*' && !preg_match( '/\* [0-9]+ FETCH.*/i', $topline )) ; + $topline = trim(array_shift($data)); + } while($topline && ($topline[0] == '*') && !preg_match('/\* [0-9]+ FETCH.*/i', $topline)) ; $wholemessage = implode('', $data); if (ereg('\\{([^\\}]*)\\}', $topline, $regs)) { - - $ret = substr( $wholemessage, 0, $regs[1] ); - /* - There is some information in the content info header that could be important - in order to parse html messages. Let's get them here. - */ - if ( $ret{0} == '<' ) { + $ret = substr($wholemessage, 0, $regs[1]); + /* There is some information in the content info header that could be important + * in order to parse html messages. Let's get them here. + */ + if ($ret{0} == '<') { $data = sqimap_run_command ($imap_stream, "FETCH $id BODY[$ent_id.MIME]", true, $response, $message, $uid_support); } } else if (ereg('"([^"]*)"', $topline, $regs)) { $ret = $regs[1]; } else { global $where, $what, $mailbox, $passed_id, $startMessage; - $par = 'mailbox=' . urlencode($mailbox) . "&passed_id=$passed_id"; + $par = 'mailbox=' . urlencode($mailbox) . '&passed_id=' . $passed_id; if (isset($where) && isset($what)) { - $par .= '&where='. urlencode($where) . "&what=" . urlencode($what); + $par .= '&where=' . urlencode($where) . '&what=' . urlencode($what); } else { - $par .= "&startMessage=$startMessage&show_more=0"; + $par .= '&startMessage=' . $startMessage . '&show_more=0'; } $par .= '&response=' . urlencode($response) . - '&message=' . urlencode($message). - '&topline=' . urlencode($topline); + '&message=' . urlencode($message) . + '&topline=' . urlencode($topline); echo '
' . '' . '' . - '" . - '" . - '" . - '" . + '" . + '" . + '" . + '" . "
' . - _("Body retrieval error. The reason for this is most probably that the message is malformed. Please help us making future versions better by submitting this message to the developers knowledgebase!") . - "
" . - _("Submit message") . '

 ' . + _("Body retrieval error. The reason for this is most probably that the message is malformed.") . '
' . _("Command:") . "$cmd
' . _("Response:") . "$response
' . _("Message:") . "$message
' . _("FETCH line:") . "$topline
' . _("Command:") . "$cmd
' . _("Response:") . "$response
' . _("Message:") . "$message
' . _("FETCH line:") . "$topline


"; $data = sqimap_run_command ($imap_stream, "FETCH $passed_id BODY[]", true, $response, $message, $uid_support); @@ -140,22 +149,19 @@ function mime_fetch_body($imap_stream, $id, $ent_id) { $ret = $wholemessage; } - return( $ret ); + return $ret; } -function mime_print_body_lines ($imap_stream, $id, $ent_id, $encoding) { +function mime_print_body_lines ($imap_stream, $id, $ent_id=1, $encoding) { global $uid_support; - // do a bit of error correction. If we couldn't find the entity id, just guess - // that it is the first one. That is usually the case anyway. - if (!$ent_id) { - $ent_id = 1; - } + $sid = sqimap_session_id($uid_support); - // Don't kill the connection if the browser is over a dialup - // and it would take over 30 seconds to download it. + /* Don't kill the connection if the browser is over a dialup + * and it would take over 30 seconds to download it. + * Don´t call set_time_limit in safe mode. + */ - // donŽ´t call set_time_limit in safe mode. - if (!ini_get("safe_mode")) { + if (!ini_get('safe_mode')) { set_time_limit(0); } if ($uid_support) { @@ -198,67 +204,49 @@ function mime_print_body_lines ($imap_stream, $id, $ent_id, $encoding) { /* -[ END MIME DECODING ]----------------------------------------------------------- */ -/* findDisplayEntity - * Checks to see if $message contains content of type $type0/$type1 - * returns the first entity number it finds of that type, or NULL if - * none is found. Takes optional argument $start to allow the caller - * to continue where they left off +/* This is here for debugging purposes. It will print out a list + * of all the entity IDs that are in the $message object. */ -function findDisplayEntity($message, $type0, $type1, $start=0) { +function listEntities ($message) { if ($message) { - for ($i = $start;isset($message->entities[$i]); $i++) { - $entity = $message->entities[$i]; - if ($entity->type0 == $type0 && $entity->type1 == $type1) { - return $i; + echo "" . $message->entity_id . ' : ' . $message->type0 . '/' . $message->type1 . ' parent = '. $message->parent->entity_id. '
'; + for ($i = 0; isset($message->entities[$i]); $i++) { + echo "$i : "; + $msg = listEntities($message->entities[$i]); + + if ($msg) { + echo "return: "; + return $msg; } } } - return NULL; } -// This is here for debugging purposese. It will print out a list -// of all the entity IDs that are in the $message object. +function getPriorityStr($priority) { + $priority_level = substr($priority,0,1); -function listEntities ($message) { - if ($message) { - echo "" . $message->entity_id . ' : ' . $message->type0 . '/' . $message->type1 . ' parent = '. $message->parent->entity_id. '
'; - for ($i = 0;isset($message->entities[$i]); $i++) { - echo "$i : "; - $msg = listEntities($message->entities[$i]); - - if ($msg) { - echo "return: "; - return $msg; - } - } - } -} + switch($priority_level) { + /* Check for a higher then normal priority. */ + case '1': + case '2': + $priority_string = _("High"); + break; -function getPriorityStr($priority) { - $priority_level = substr($priority,0,1); - - switch($priority_level) { - /* check for a higher then normal priority. */ - case '1': - case '2': - $priority_string = _("High"); - break; - - /* check for a lower then normal priority. */ - case '4': - case '5': - $priority_string = _("Low"); - break; - - /* check for a normal priority. */ - case '3': - default: - $priority_level = '3'; - $priority_string = _("Normal"); - break; - - } - return $priority_string; + /* Check for a lower then normal priority. */ + case '4': + case '5': + $priority_string = _("Low"); + break; + + /* Check for a normal priority. */ + case '3': + default: + $priority_level = '3'; + $priority_string = _("Normal"); + break; + + } + return $priority_string; } /* returns a $message object for a particular entity id */ @@ -266,19 +254,17 @@ function getEntity ($message, $ent_id) { return $message->getEntity($ent_id); } -/* - * translateText +/* translateText * Extracted from strings.php 23/03/2002 */ function translateText(&$body, $wrap_at, $charset) { - global $where, $what; /* from searching */ - global $color; /* color theme */ + global $where, $what; /* from searching */ + global $color; /* color theme */ - require_once('../functions/url_parser.php'); + require_once(SM_PATH . 'functions/url_parser.php'); $body_ary = explode("\n", $body); - $PriorQuotes = 0; for ($i=0; $i < count($body_ary); $i++) { $line = $body_ary[$i]; if (strlen($line) - 2 >= $wrap_at) { @@ -289,33 +275,33 @@ function translateText(&$body, $wrap_at, $charset) { parseUrl ($line); - $Quotes = 0; + $quotes = 0; $pos = 0; - $j = strlen( $line ); + $j = strlen($line); - while ( $pos < $j ) { + while ($pos < $j) { if ($line[$pos] == ' ') { - $pos ++; + $pos++; } else if (strpos($line, '>', $pos) === $pos) { $pos += 4; - $Quotes ++; + $quotes++; } else { break; } } - - if ($Quotes > 1) { - if (! isset($color[14])) { + + if ($quotes > 1) { + if (!isset($color[14])) { $color[14] = '#FF0000'; } $line = '' . $line . ''; - } elseif ($Quotes) { - if (! isset($color[13])) { + } elseif ($quotes) { + if (!isset($color[13])) { $color[13] = '#800000'; } $line = '' . $line . ''; } - + $body_ary[$i] = $line; } $body = '
' . implode("\n", $body_ary) . '
'; @@ -323,58 +309,82 @@ function translateText(&$body, $wrap_at, $charset) { /* This returns a parsed string called $body. That string can then -be displayed as the actual message in the HTML. It contains -everything needed, including HTML Tags, Attachments at the -bottom, etc. -*/ + * be displayed as the actual message in the HTML. It contains + * everything needed, including HTML Tags, Attachments at the + * bottom, etc. + */ function formatBody($imap_stream, $message, $color, $wrap_at, $ent_num, $id, $mailbox='INBOX') { - // this if statement checks for the entity to show as the - // primary message. To add more of them, just put them in the - // order that is their priority. + /* This if statement checks for the entity to show as the + * primary message. To add more of them, just put them in the + * order that is their priority. + */ global $startMessage, $username, $key, $imapServerAddress, $imapPort, - $show_html_default, $has_unsafe_images, $view_unsafe_images, $sort; + $show_html_default, $sort, $has_unsafe_images, $passed_ent_id; + + if( !sqgetGlobalVar('view_unsafe_images', $view_unsafe_images, SQ_GET) ) { + $view_unsafe_images = false; + } - $has_unsafe_images= 0; $body = ''; $urlmailbox = urlencode($mailbox); $body_message = getEntity($message, $ent_num); if (($body_message->header->type0 == 'text') || ($body_message->header->type0 == 'rfc822')) { - $body = mime_fetch_body ($imap_stream, $id, $ent_num); + $body = mime_fetch_body ($imap_stream, $id, $ent_num); $body = decodeBody($body, $body_message->header->encoding); $hookResults = do_hook("message_body", $body); $body = $hookResults[1]; - // If there are other types that shouldn't be formatted, add - // them here + /* If there are other types that shouldn't be formatted, add + * them here. + */ + if ($body_message->header->type1 == 'html') { - if ( $show_html_default <> 1 ) { - $body = strip_tags( $body ); - translateText($body, $wrap_at, - $body_message->header->getParameter['charset']); + if ($show_html_default <> 1) { + $entity_conv = array(' ' => ' ', + '

' => "\n", + '
' => "\n", + '

' => "\n", + '
' => "\n", + '>' => '>', + '<' => '<'); + $body = strtr($body, $entity_conv); + $body = strip_tags($body); + $body = trim($body); + translateText($body, $wrap_at, + $body_message->header->getParameter('charset')); } else { - $body = magicHTML( $body, $id, $message, $mailbox ); + $body = magicHTML($body, $id, $message, $mailbox); } } else { - translateText($body, $wrap_at, - $body_message->header->getParameter('charset')); + translateText($body, $wrap_at, + $body_message->header->getParameter('charset')); } - - if ($has_unsafe_images) { - if ($view_unsafe_images) { - $body .= "

entity_id."&mailbox=$urlmailbox&sort=$sort&startMessage=$startMessage&show_more=0\">". _("Hide Unsafe Images") ."

\n"; - } else { - $body .= "
entity_id."&mailbox=$urlmailbox&sort=$sort&startMessage=$startMessage&show_more=0&view_unsafe_images=1\">". _("View Unsafe Images") ."

\n"; - } - } - } - return ($body); + $link = 'read_body.php?passed_id=' . $id . '&ent_id='.$ent_num. + '&mailbox=' . $urlmailbox .'&sort=' . $sort . + '&startMessage=' . $startMessage . '&show_more=0'; + if (isset($passed_ent_id)) { + $link .= '&passed_ent_id='.$passed_ent_id; + } + if ($view_unsafe_images) { + $text = _("Hide Unsafe Images"); + } else { + if (isset($has_unsafe_images) && $has_unsafe_images) { + $link .= '&view_unsafe_images=1'; + $text = _("View Unsafe Images"); + } else { + $text = ''; + } + } + $body .= '
'.$text. + '

' . "\n"; + } + return $body; } function formatAttachments($message, $exclude_id, $mailbox, $id) { - global $where, $what; - global $startMessage, $color; + global $where, $what, $startMessage, $color; static $ShownHTML = 0; $att_ar = $message->getAttachments($exclude_id); @@ -391,15 +401,17 @@ function formatAttachments($message, $exclude_id, $mailbox, $id) { $type0 = strtolower($header->type0); $type1 = strtolower($header->type1); $name = ''; - $Links['download link']['text'] = _("download"); - $Links['download link']['href'] = + $links['download link']['text'] = _("download"); + $links['download link']['href'] = "../src/download.php?absolute_dl=true&passed_id=$id&mailbox=$urlMailbox&ent_id=$ent"; $ImageURL = ''; if ($type0 =='message' && $type1 == 'rfc822') { $default_page = '../src/read_body.php'; $rfc822_header = $att->rfc822_header; $filename = decodeHeader($rfc822_header->subject); - + if (trim( $filename ) == '') { + $filename = 'untitled-[' . $ent . ']' ; + } $from_o = $rfc822_header->from; if (is_object($from_o)) { $from_name = $from_o->getAddress(false); @@ -407,65 +419,75 @@ function formatAttachments($message, $exclude_id, $mailbox, $id) { $from_name = _("Unknown sender"); } $from_name = decodeHeader(htmlspecialchars($from_name)); - $description = $from_name; + $description = $from_name; } else { $default_page = '../src/download.php'; - if (is_object($header->disposition)) { - $filename = decodeHeader($header->disposition->getProperty('filename')); - if (trim($filename) == '') { - $name = decodeHeader($header->disposition->getProperty('name')); - if (trim($name) == '') { - if ( trim( $header->id ) == '' ) - $filename = 'untitled-[' . $ent . ']' ; - else - $filename = 'cid: ' . $header->id; - } else { - $filename = $name; - } - } - } else { - if ( trim( $header->id ) == '' ) - $filename = 'untitled-[' . $ent . ']' ; - else - $filename = 'cid: ' . $header->id; + if (is_object($header->disposition)) { + $filename = decodeHeader($header->disposition->getProperty('filename')); + if (trim($filename) == '') { + $name = decodeHeader($header->disposition->getProperty('name')); + if (trim($name) == '') { + $name = decodeHeader($header->getParameter('name')); + if(trim($name) == '') { + if (trim( $header->id ) == '') { + $filename = 'untitled-[' . $ent . ']' ; + } else { + $filename = 'cid: ' . $header->id; + } + } else { + $filename = $name; + } + } else { + $filename = $name; + } + } + } else { + $filename = decodeHeader($header->getParameter('name')); + if (!trim($filename)) { + if (trim( $header->id ) == '') { + $filename = 'untitled-[' . $ent . ']' ; + } else { + $filename = 'cid: ' . $header->id; + } + } } - if ($header->description) { $description = htmlspecialchars($header->description); } else { - $description = ''; - } + $description = ''; + } } $display_filename = $filename; - if (isset($passed_ent_id)) { - $passed_ent_id_link = '&passed_ent_id='.$passed_ent_id; - } else { - $passed_ent_id_link = ''; - } - $DefaultLink = $default_page . "?startMessage=$startMessage" + if (isset($passed_ent_id)) { + $passed_ent_id_link = '&passed_ent_id='.$passed_ent_id; + } else { + $passed_ent_id_link = ''; + } + $defaultlink = $default_page . "?startMessage=$startMessage" . "&passed_id=$id&mailbox=$urlMailbox" - . '&ent_id='.$ent.$passed_ent_id_link; + . '&ent_id='.$ent.$passed_ent_id_link.'&absolute_dl=true'; if ($where && $what) { - $DefaultLink = '&where='. urlencode($where).'&what='.urlencode($what); + $defaultlink .= '&where='. urlencode($where).'&what='.urlencode($what); } - /* this executes the attachment hook with a specific MIME-type. - * if that doens't have results, it tries if there's a rule - * for a more generic type. */ - $HookResults = do_hook("attachment $type0/$type1", $Links, - $startMessage, $id, $urlMailbox, $ent, $DefaultLink, - $display_filename, $where, $what); - if(count($HookResults[1]) <= 1) { - $HookResults = do_hook("attachment $type0/*", $Links, - $startMessage, $id, $urlMailbox, $ent, $DefaultLink, - $display_filename, $where, $what); + /* This executes the attachment hook with a specific MIME-type. + * If that doesn't have results, it tries if there's a rule + * for a more generic type. + */ + $hookresults = do_hook("attachment $type0/$type1", $links, + $startMessage, $id, $urlMailbox, $ent, $defaultlink, + $display_filename, $where, $what); + if(count($hookresults[1]) <= 1) { + $hookresults = do_hook("attachment $type0/*", $links, + $startMessage, $id, $urlMailbox, $ent, $defaultlink, + $display_filename, $where, $what); } - $Links = $HookResults[1]; - $DefaultLink = $HookResults[6]; + $links = $hookresults[1]; + $defaultlink = $hookresults[6]; $attachments .= '' . - "$display_filename " . + ''.htmlspecialchars($display_filename).' ' . '' . show_readable_size($header->size) . '  ' . "[ $type0/$type1 ] " . @@ -473,48 +495,48 @@ function formatAttachments($message, $exclude_id, $mailbox, $id) { $attachments .= '' . $description . ''; $attachments .= ' '; - $SkipSpaces = 1; - foreach ($Links as $Val) { - if ($SkipSpaces) { - $SkipSpaces = 0; + $skipspaces = 1; + foreach ($links as $val) { + if ($skipspaces) { + $skipspaces = 0; } else { $attachments .= '  |  '; } - $attachments .= '' . $Val['text'] . ''; + $attachments .= '' . $val['text'] . ''; } - unset($Links); + unset($links); $attachments .= "\n"; } return $attachments; } -/** this function decodes the body depending on the encoding type. **/ +/* This function decodes the body depending on the encoding type. */ function decodeBody($body, $encoding) { global $languages, $squirrelmail_language; + global $show_html_default; - $body = str_replace("\r\n", "\n", $body); - $encoding = strtolower($encoding); - - global $show_html_default; + $body = str_replace("\r\n", "\n", $body); + $encoding = strtolower($encoding); - if ($encoding == 'quoted-printable' || - $encoding == 'quoted_printable') { - $body = quoted_printable_decode($body); + if ($encoding == 'quoted-printable' || + $encoding == 'quoted_printable') { + $body = quoted_printable_decode($body); - while (ereg("=\n", $body)) - $body = ereg_replace ("=\n", "", $body); + while (ereg("=\n", $body)) { + $body = ereg_replace ("=\n", '', $body); + } - } else if ($encoding == 'base64') { - $body = base64_decode($body); - } + } else if ($encoding == 'base64') { + $body = base64_decode($body); + } - if (isset($languages[$squirrelmail_language]['XTRA_CODE']) && - function_exists($languages[$squirrelmail_language]['XTRA_CODE'])) { - $body = $languages[$squirrelmail_language]['XTRA_CODE']('decode', $body); - } + if (isset($languages[$squirrelmail_language]['XTRA_CODE']) && + function_exists($languages[$squirrelmail_language]['XTRA_CODE'])) { + $body = $languages[$squirrelmail_language]['XTRA_CODE']('decode', $body); + } - // All other encodings are returned raw. - return $body; + // All other encodings are returned raw. + return $body; } /* @@ -537,19 +559,22 @@ function decodeHeader ($string, $utfencode=true) { while (preg_match('/^(.{' . $i . '})(.*)=\?([^?]*)\?(Q|B)\?([^?]*)\?=/Ui', $string, $res)) { $prefix = $res[1]; - // Ignore white-space between consecutive encoded-words + /* Ignore white-space between consecutive encoded-words. */ if (strspn($res[2], " \t") != strlen($res[2])) { $prefix .= $res[2]; } if (ucfirst($res[4]) == 'B') { $replace = base64_decode($res[5]); + $replace = charset_decode($res[3],$replace); + } else { $replace = str_replace('_', ' ', $res[5]); $replace = preg_replace('/=([0-9a-f]{2})/ie', 'chr(hexdec("\1"))', $replace); /* Only encode into entities by default. Some places - don't need the encoding, like the compose form. */ + * don't need the encoding, like the compose form. + */ if ($utfencode) { $replace = charset_decode($res[3], $replace); } @@ -557,7 +582,7 @@ function decodeHeader ($string, $utfencode=true) { $string = $prefix . $replace . substr($string, strlen($res[0])); $i = strlen($prefix) + strlen($replace); } - return( $string ); + return $string; } /* @@ -574,55 +599,66 @@ function encodeHeader ($string) { } // Encode only if the string contains 8-bit characters or =? - $j = strlen( $string ); + $j = strlen($string); $l = strstr($string, '=?'); // Must be encoded ? $ret = ''; - for( $i=0; $i < $j; ++$i) { - switch( $string{$i} ) { - case '=': - $ret .= '=3D'; - break; - case '?': - $ret .= '=3F'; - break; - case '_': - $ret .= '=5F'; - break; - case ' ': - $ret .= '_'; - break; - default: - $k = ord( $string{$i} ); - if ( $k > 126 ) { - $ret .= sprintf("=%02X", $k); - $l = TRUE; - } else - $ret .= $string{$i}; + for($i = 0; $i < $j; ++$i) { + switch($string{$i}) { + case '=': + $ret .= '=3D'; + break; + case '?': + $ret .= '=3F'; + break; + case '_': + $ret .= '=5F'; + break; + case ' ': + $ret .= '_'; + break; + default: + $k = ord($string{$i}); + if ($k > 126) { + $ret .= sprintf("=%02X", $k); + $l = TRUE; + } else { + $ret .= $string{$i}; + } + break; } } - if ( $l ) { + if ($l) { $string = "=?$default_charset?Q?$ret?="; } - return( $string ); + return $string; } /* This function trys to locate the entity_id of a specific mime element */ - -function find_ent_id( $id, $message ) { - $ret = ''; - for ($i=0; $ret == '' && $i < count($message->entities); $i++) { - if ( $message->entities[$i]->header->type0 == 'multipart') { - $ret = find_ent_id( $id, $message->entities[$i] ); +function find_ent_id($id, $message) { + for ($i = 0, $ret = ''; $ret == '' && $i < count($message->entities); $i++) { + if ($message->entities[$i]->header->type0 == 'multipart') { + $ret = find_ent_id($id, $message->entities[$i]); } else { - if ( strcasecmp( $message->entities[$i]->header->id, $id ) == 0 ) - $ret = $message->entities[$i]->entity_id; + if (strcasecmp($message->entities[$i]->header->id, $id) == 0) { +// if (sq_check_save_extension($message->entities[$i])) { + return $message->entities[$i]->entity_id; +// } + } } } - return( $ret ); + return $ret; +} + +function sq_check_save_extension($message) { + $filename = $message->getFilename(); + $ext = substr($filename, strrpos($filename,'.')+1); + $save_extensions = array('jpg','jpeg','gif','png','bmp'); + return in_array($ext, $save_extensions); } + /** ** HTMLFILTER ROUTINES */ @@ -638,7 +674,8 @@ function find_ent_id( $id, $message ) { * @return a string with the final tag representation. */ function sq_tagprint($tagname, $attary, $tagtype){ - $me = "sq_tagprint"; + $me = 'sq_tagprint'; + if ($tagtype == 2){ $fulltag = ''; } else { @@ -651,9 +688,9 @@ function sq_tagprint($tagname, $attary, $tagtype){ $fulltag .= ' ' . join(" ", $atts); } if ($tagtype == 3){ - $fulltag .= " /"; + $fulltag .= ' /'; } - $fulltag .= ">"; + $fulltag .= '>'; } return $fulltag; } @@ -680,8 +717,8 @@ function sq_casenormalize(&$val){ * non-whitespace char is located. */ function sq_skipspace($body, $offset){ - $me = "sq_skipspace"; - preg_match("/^(\s*)/s", substr($body, $offset), $matches); + $me = 'sq_skipspace'; + preg_match('/^(\s*)/s', substr($body, $offset), $matches); if (sizeof($matches{1})){ $count = strlen($matches{1}); $offset += $count; @@ -701,7 +738,7 @@ function sq_skipspace($body, $offset){ * strlen($body) if needle wasn't found. */ function sq_findnxstr($body, $offset, $needle){ - $me = "sq_findnxstr"; + $me = 'sq_findnxstr'; $pos = strpos($body, $needle, $offset); if ($pos === FALSE){ $pos = strlen($body); @@ -723,7 +760,7 @@ function sq_findnxstr($body, $offset, $needle){ * - string with whatever it is we matched */ function sq_findnxreg($body, $offset, $reg){ - $me = "sq_findnxreg"; + $me = 'sq_findnxreg'; $matches = Array(); $retarr = Array(); preg_match("%^(.*?)($reg)%s", substr($body, $offset), $matches); @@ -752,7 +789,7 @@ function sq_findnxreg($body, $offset, $reg){ * first three members will be false, if the tag is invalid. */ function sq_getnxtag($body, $offset){ - $me = "sq_getnxtag"; + $me = 'sq_getnxtag'; if ($offset > strlen($body)){ return false; } @@ -780,34 +817,34 @@ function sq_getnxtag($body, $offset){ */ $tagtype = false; switch (substr($body, $pos, 1)){ - case "/": - $tagtype = 2; - $pos++; - break; - case "!": - /** - * A comment or an SGML declaration. - */ - if (substr($body, $pos+1, 2) == "--"){ - $gt = strpos($body, "-->", $pos); - if ($gt === false){ - $gt = strlen($body); + case '/': + $tagtype = 2; + $pos++; + break; + case '!': + /** + * A comment or an SGML declaration. + */ + if (substr($body, $pos+1, 2) == "--"){ + $gt = strpos($body, "-->", $pos); + if ($gt === false){ + $gt = strlen($body); + } else { + $gt += 2; + } + return Array(false, false, false, $lt, $gt); } else { - $gt += 2; - } - return Array(false, false, false, $lt, $gt); - } else { - $gt = sq_findnxstr($body, $pos, ">"); - return Array(false, false, false, $lt, $gt); - } - break; - default: - /** - * Assume tagtype 1 for now. If it's type 3, we'll switch values - * later. - */ - $tagtype = 1; - break; + $gt = sq_findnxstr($body, $pos, ">"); + return Array(false, false, false, $lt, $gt); + } + break; + default: + /** + * Assume tagtype 1 for now. If it's type 3, we'll switch values + * later. + */ + $tagtype = 1; + break; } $tag_start = $pos; @@ -831,37 +868,37 @@ function sq_getnxtag($body, $offset){ * Whatever else we find there indicates an invalid tag. */ switch ($match){ - case "/": - /** - * This is an xhtml-style tag with a closing / at the - * end, like so: . Check if it's followed - * by the closing bracket. If not, then this tag is invalid - */ - if (substr($body, $pos, 2) == "/>"){ - $pos++; - $tagtype = 3; - } else { - $gt = sq_findnxstr($body, $pos, ">"); - $retary = Array(false, false, false, $lt, $gt); - return $retary; - } - case ">": - return Array($tagname, false, $tagtype, $lt, $pos); - break; - default: - /** - * Check if it's whitespace - */ - if (preg_match("/\s/", $match)){ - } else { + case '/': /** - * This is an invalid tag! Look for the next closing ">". + * This is an xhtml-style tag with a closing / at the + * end, like so: . Check if it's followed + * by the closing bracket. If not, then this tag is invalid */ - $gt = sq_findnxstr($body, $offset, ">"); - return Array(false, false, false, $lt, $gt); - } + if (substr($body, $pos, 2) == "/>"){ + $pos++; + $tagtype = 3; + } else { + $gt = sq_findnxstr($body, $pos, ">"); + $retary = Array(false, false, false, $lt, $gt); + return $retary; + } + case '>': + return Array($tagname, false, $tagtype, $lt, $pos); + break; + default: + /** + * Check if it's whitespace + */ + if (!preg_match('/\s/', $match)){ + /** + * This is an invalid tag! Look for the next closing ">". + */ + $gt = sq_findnxstr($body, $offset, ">"); + return Array(false, false, false, $lt, $gt); + } + break; } - + /** * At this point we're here: * @@ -933,91 +970,92 @@ function sq_getnxtag($body, $offset){ * anything else means the attribute is invalid. */ switch($match){ - case "/": - /** - * This is an xhtml-style tag with a closing / at the - * end, like so: . Check if it's followed - * by the closing bracket. If not, then this tag is invalid - */ - if (substr($body, $pos, 2) == "/>"){ - $pos++; - $tagtype = 3; - } else { - $gt = sq_findnxstr($body, $pos, ">"); - $retary = Array(false, false, false, $lt, $gt); - return $retary; - } - case ">": - $attary{$attname} = '"yes"'; - return Array($tagname, $attary, $tagtype, $lt, $pos); - break; - default: - /** - * Skip whitespace and see what we arrive at. - */ - $pos = sq_skipspace($body, $pos); - $char = substr($body, $pos, 1); - /** - * Two things are valid here: - * '=' means this is attribute type 1 2 or 3. - * \w means this was attribute type 4. - * anything else we ignore and re-loop. End of tag and - * invalid stuff will be caught by our checks at the beginning - * of the loop. - */ - if ($char == "="){ - $pos++; - $pos = sq_skipspace($body, $pos); + case '/': /** - * Here are 3 possibilities: - * "'" attribute type 1 - * '"' attribute type 2 - * everything else is the content of tag type 3 + * This is an xhtml-style tag with a closing / at the + * end, like so: . Check if it's followed + * by the closing bracket. If not, then this tag is invalid */ - $quot = substr($body, $pos, 1); - if ($quot == "'"){ - $regary = sq_findnxreg($body, $pos+1, "\'"); - if ($regary == false){ - return Array(false, false, false, $lt, strlen($body)); - } - list($pos, $attval, $match) = $regary; - $pos++; - $attary{$attname} = "'" . $attval . "'"; - } else if ($quot == '"'){ - $regary = sq_findnxreg($body, $pos+1, '\"'); - if ($regary == false){ - return Array(false, false, false, $lt, strlen($body)); - } - list($pos, $attval, $match) = $regary; + if (substr($body, $pos, 2) == "/>"){ $pos++; - $attary{$attname} = '"' . $attval . '"'; + $tagtype = 3; } else { + $gt = sq_findnxstr($body, $pos, ">"); + $retary = Array(false, false, false, $lt, $gt); + return $retary; + } + case '>': + $attary{$attname} = '"yes"'; + return Array($tagname, $attary, $tagtype, $lt, $pos); + break; + default: + /** + * Skip whitespace and see what we arrive at. + */ + $pos = sq_skipspace($body, $pos); + $char = substr($body, $pos, 1); + /** + * Two things are valid here: + * '=' means this is attribute type 1 2 or 3. + * \w means this was attribute type 4. + * anything else we ignore and re-loop. End of tag and + * invalid stuff will be caught by our checks at the beginning + * of the loop. + */ + if ($char == "="){ + $pos++; + $pos = sq_skipspace($body, $pos); /** - * These are hateful. Look for \s, or >. + * Here are 3 possibilities: + * "'" attribute type 1 + * '"' attribute type 2 + * everything else is the content of tag type 3 */ - $regary = sq_findnxreg($body, $pos, "[\s>]"); - if ($regary == false){ - return Array(false, false, false, $lt, strlen($body)); + $quot = substr($body, $pos, 1); + if ($quot == "'"){ + $regary = sq_findnxreg($body, $pos+1, "\'"); + if ($regary == false){ + return Array(false, false, false, $lt, strlen($body)); + } + list($pos, $attval, $match) = $regary; + $pos++; + $attary{$attname} = "'" . $attval . "'"; + } else if ($quot == '"'){ + $regary = sq_findnxreg($body, $pos+1, '\"'); + if ($regary == false){ + return Array(false, false, false, $lt, strlen($body)); + } + list($pos, $attval, $match) = $regary; + $pos++; + $attary{$attname} = '"' . $attval . '"'; + } else { + /** + * These are hateful. Look for \s, or >. + */ + $regary = sq_findnxreg($body, $pos, "[\s>]"); + if ($regary == false){ + return Array(false, false, false, $lt, strlen($body)); + } + list($pos, $attval, $match) = $regary; + /** + * If it's ">" it will be caught at the top. + */ + $attval = preg_replace("/\"/s", """, $attval); + $attary{$attname} = '"' . $attval . '"'; } - list($pos, $attval, $match) = $regary; + } else if (preg_match("|[\w/>]|", $char)) { + /** + * That was attribute type 4. + */ + $attary{$attname} = '"yes"'; + } else { /** - * If it's ">" it will be caught at the top. + * An illegal character. Find next '>' and return. */ - $attval = preg_replace("/\"/s", """, $attval); - $attary{$attname} = '"' . $attval . '"'; + $gt = sq_findnxstr($body, $pos, ">"); + return Array(false, false, false, $lt, $gt); } - } else if (preg_match("|[\w/>]|", $char)) { - /** - * That was attribute type 4. - */ - $attary{$attname} = '"yes"'; - } else { - /** - * An illegal character. Find next '>' and return. - */ - $gt = sq_findnxstr($body, $pos, ">"); - return Array(false, false, false, $lt, $gt); - } + break; } } /** @@ -1036,7 +1074,7 @@ function sq_getnxtag($body, $offset){ * @return Translated value. */ function sq_deent($attvalue){ - $me="sq_deent"; + $me = 'sq_deent'; /** * See if we have to run the checks first. All entities must start * with "&". @@ -1093,9 +1131,9 @@ function sq_fixatts($tagname, $add_attr_to_tag, $message, $id, - $mailbox + $mailbox ){ - $me = "sq_fixatts"; + $me = 'sq_fixatts'; while (list($attname, $attvalue) = each($attary)){ /** * See if this attribute should be removed. @@ -1169,7 +1207,7 @@ function sq_fixatts($tagname, */ function sq_fixstyle($message, $id, $content){ global $view_unsafe_images; - $me = "sq_fixstyle"; + $me = 'sq_fixstyle'; /** * First look for general BODY style declaration, which would be * like so: @@ -1177,7 +1215,7 @@ function sq_fixstyle($message, $id, $content){ * and change it to .bodyclass so we can just assign it to a
*/ $content = preg_replace("|body(\s*\{.*?\})|si", ".bodyclass\\1", $content); - $secremoveimg = "../images/" . _("sec_remove_eng.png"); + $secremoveimg = '../images/' . _("sec_remove_eng.png"); /** * Fix url('blah') declarations. */ @@ -1208,8 +1246,8 @@ function sq_fixstyle($message, $id, $content){ * in IE. */ $match = Array('/expression/si', - '/behaviou*r/si', - '/binding/si'); + '/behaviou*r/si', + '/binding/si'); $replace = Array('idiocy', 'idiocy', 'idiocy'); $content = preg_replace($match, $replace, $content); return $content; @@ -1231,9 +1269,15 @@ function sq_cid2http($message, $id, $cidurl, $mailbox){ $quotchar = substr($cidurl, 0, 1); $cidurl = str_replace($quotchar, "", $cidurl); $cidurl = substr(trim($cidurl), 4); - $httpurl = $quotchar . "../src/download.php?absolute_dl=true&" . - "passed_id=$id&mailbox=" . urlencode($mailbox) . - "&ent_id=" . find_ent_id($cidurl, $message) . $quotchar; + $linkurl = find_ent_id($cidurl, $message); + /* in case of non-save cid links $httpurl should be replaced by a sort of + unsave link image */ + $httpurl = ''; + if ($linkurl) { + $httpurl = $quotchar . '../src/download.php?absolute_dl=true&' . + "passed_id=$id&mailbox=" . urlencode($mailbox) . + '&ent_id=' . $linkurl . $quotchar; + } return $httpurl; } @@ -1245,24 +1289,25 @@ function sq_cid2http($message, $id, $cidurl, $mailbox){ * @return a modified array of attributes to be set for
*/ function sq_body2div($attary){ - $me = "sq_body2div"; - $divattary = Array("class"=>"'bodyclass'"); - $bgcolor="#ffffff"; - $text="#000000"; - $styledef=""; + $me = 'sq_body2div'; + $divattary = Array('class' => "'bodyclass'"); + $bgcolor = '#ffffff'; + $text = '#000000'; + $styledef = ''; if (is_array($attary) && sizeof($attary) > 0){ foreach ($attary as $attname=>$attvalue){ $quotchar = substr($attvalue, 0, 1); $attvalue = str_replace($quotchar, "", $attvalue); switch ($attname){ - case "background": - $styledef .= "background-image: url('$attvalue'); "; - break; - case "bgcolor": - $styledef .= "background-color: $attvalue; "; - break; - case "text": - $styledef .= "color: $attvalue; "; + case 'background': + $styledef .= "background-image: url('$attvalue'); "; + break; + case 'bgcolor': + $styledef .= "background-color: $attvalue; "; + break; + case 'text': + $styledef .= "color: $attvalue; "; + break; } } if (strlen($styledef) > 0){ @@ -1302,9 +1347,9 @@ function sq_sanitize($body, $add_attr_to_tag, $message, $id, - $mailbox + $mailbox ){ - $me = "sq_sanitize"; + $me = 'sq_sanitize'; /** * Normalize rm_tags and rm_tags_with_content. */ @@ -1342,7 +1387,6 @@ function sq_sanitize($body, } if ($skip_content == false){ $trusted .= $free_content; - } else { } if ($tagname != FALSE){ if ($tagtype == 2){ @@ -1364,7 +1408,6 @@ function sq_sanitize($body, $tagname = false; } } - } else { } } } else { @@ -1412,7 +1455,7 @@ function sq_sanitize($body, $add_attr_to_tag, $message, $id, - $mailbox + $mailbox ); } /** @@ -1424,13 +1467,11 @@ function sq_sanitize($body, } } } - } else { } } if ($tagname != false && $skip_content == false){ $trusted .= sq_tagprint($tagname, $attary, $tagtype); } - } else { } $curpos = $gt+1; } @@ -1455,9 +1496,9 @@ function sq_sanitize($body, * @param $id the id of the message * @return a string with html safe to display in the browser. */ -function magicHTML($body, $id, $message, $mailbox = 'INBOX'){ +function magicHTML($body, $id, $message, $mailbox = 'INBOX') { global $attachment_common_show_images, $view_unsafe_images, - $has_unsafe_images; + $has_unsafe_images; /** * Don't display attached images in HTML mode. */ @@ -1469,7 +1510,9 @@ function magicHTML($body, $id, $message, $mailbox = 'INBOX'){ "html", "head", "base", - "link" + "link", + "frame", + "iframe" ); $rm_tags_with_content = Array( @@ -1493,8 +1536,8 @@ function magicHTML($body, $id, $message, $mailbox = 'INBOX'){ Array( "/target/si", "/^on.*/si", - "/^dynsrc/si", - "/^data.*/si" + "/^dynsrc/si", + "/^data.*/si" ) ); @@ -1507,14 +1550,14 @@ function magicHTML($body, $id, $message, $mailbox = 'INBOX'){ Array( "|^([\'\"])\s*\.\./.*([\'\"])|si", "/^([\'\"])\s*\S+script\s*:.*([\'\"])/si", - "/^([\'\"])\s*mocha\s*:*.*([\'\"])/si", - "/^([\'\"])\s*about\s*:.*([\'\"])/si" + "/^([\'\"])\s*mocha\s*:*.*([\'\"])/si", + "/^([\'\"])\s*about\s*:.*([\'\"])/si" ), Array( "\\1$secremoveimg\\2", "\\1$secremoveimg\\2", - "\\1$secremoveimg\\2", - "\\1$secremoveimg\\2" + "\\1$secremoveimg\\2", + "\\1$secremoveimg\\2" ) ), "/^href|action/i" => @@ -1522,39 +1565,42 @@ function magicHTML($body, $id, $message, $mailbox = 'INBOX'){ Array( "|^([\'\"])\s*\.\./.*([\'\"])|si", "/^([\'\"])\s*\S+script\s*:.*([\'\"])/si", - "/^([\'\"])\s*mocha\s*:*.*([\'\"])/si", - "/^([\'\"])\s*about\s*:.*([\'\"])/si" + "/^([\'\"])\s*mocha\s*:*.*([\'\"])/si", + "/^([\'\"])\s*about\s*:.*([\'\"])/si" ), Array( "\\1#\\2", "\\1#\\2", - "\\1#\\2", - "\\1#\\2" + "\\1#\\2", + "\\1#\\2" ) ), "/^style/si" => Array( Array( "/expression/si", - "/binding/si", - "/behaviou*r/si", + "/binding/si", + "/behaviou*r/si", "|url\(([\'\"])\s*\.\./.*([\'\"])\)|si", "/url\(([\'\"])\s*\S+script\s*:.*([\'\"])\)/si", - "/url\(([\'\"])\s*mocha\s*:.*([\'\"])\)/si", - "/url\(([\'\"])\s*about\s*:.*([\'\"])\)/si" + "/url\(([\'\"])\s*mocha\s*:.*([\'\"])\)/si", + "/url\(([\'\"])\s*about\s*:.*([\'\"])\)/si" ), Array( "idiocy", - "idiocy", - "idiocy", + "idiocy", + "idiocy", + "url(\\1#\\2)", "url(\\1#\\2)", "url(\\1#\\2)", - "url(\\1#\\2)", - "url(\\1#\\2)" + "url(\\1#\\2)" ) ) ) ); + if( !sqgetGlobalVar('view_unsafe_images', $view_unsafe_images, SQ_GET) ) { + $view_unsafe_images = false; + } if (!$view_unsafe_images){ /** * Remove any references to http/https if view_unsafe_images set @@ -1583,7 +1629,7 @@ function magicHTML($body, $id, $message, $mailbox = 'INBOX'){ $add_attr_to_tag, $message, $id, - $mailbox + $mailbox ); if (preg_match("|$secremoveimg|si", $trusted)){ $has_unsafe_images = true;