Adding ability to hook into ANY attachment type. Also, please review my comments...
[squirrelmail.git] / functions / mime.php
CommitLineData
59177427 1<?php
2ba13803 2
35586184 3/**
8bd0068d 4 * mime.php
5 *
8bd0068d 6 * This contains the functions necessary to detect and decode MIME
7 * messages.
8 *
47ccfad4 9 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
4b4abf93 10 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
8bd0068d 11 * @version $Id$
12 * @package squirrelmail
13 */
b74ba498 14
202bcbcc 15/**
16 * dependency information
17 functions dependency
18 mime_structure
19 class/mime/Message.class.php
20 Message::parseStructure
21 functions/page_header.php
22 displayPageHeader
23 functions/display_messages.php
24 plain_error_message
25 mime_fetch_body
26 functions/imap_general.php
27 sqimap_run_command
28 mime_print_body_lines
29
30
31
32functions/imap.php
33functions/attachment_common.php
34functions/display_messages.php
35
36magicHtml => url_parser
37translateText => url_parser
38
39*/
40
8beafbbc 41
7c7b74b3 42/* -------------------------------------------------------------------------- */
43/* MIME DECODING */
44/* -------------------------------------------------------------------------- */
b74ba498 45
d6c32258 46/**
8bd0068d 47 * Get the MIME structure
48 *
49 * This function gets the structure of a message and stores it in the "message" class.
50 * It will return this object for use with all relevant header information and
51 * fully parsed into the standard "message" object format.
52 */
a4a70693 53function mime_structure ($bodystructure, $flags=array()) {
c9d78ab4 54
3d8371be 55 /* Isolate the body structure and remove beginning and end parenthesis. */
a4a70693 56 $read = trim(substr ($bodystructure, strpos(strtolower($bodystructure), 'bodystructure') + 13));
451f74a2 57 $read = trim(substr ($read, 0, -1));
22efa9fb 58 $i = 0;
59 $msg = Message::parseStructure($read,$i);
9de42168 60 if (!is_object($msg)) {
3d8371be 61 global $color, $mailbox;
c96c32f4 62 /* removed urldecode because $_GET is auto urldecoded ??? */
a48eba8f 63 displayPageHeader( $color, $mailbox );
5e8de8b6 64 $errormessage = _("SquirrelMail could not decode the bodystructure of the message");
8bd0068d 65 $errormessage .= '<br />'._("The bodystructure provided by your IMAP server:").'<br /><br />';
472e7acb 66 $errormessage .= '<pre>' . htmlspecialchars($read) . '</pre>';
9de42168 67 plain_error_message( $errormessage, $color );
3d8371be 68 echo '</body></html>';
9de42168 69 exit;
70 }
a4a70693 71 if (count($flags)) {
7a9e9c89 72 foreach ($flags as $flag) {
73 $char = strtoupper($flag{1});
74 switch ($char) {
3d8371be 75 case 'S':
76 if (strtolower($flag) == '\\seen') {
77 $msg->is_seen = true;
78 }
79 break;
80 case 'A':
81 if (strtolower($flag) == '\\answered') {
82 $msg->is_answered = true;
83 }
84 break;
85 case 'D':
86 if (strtolower($flag) == '\\deleted') {
87 $msg->is_deleted = true;
88 }
89 break;
90 case 'F':
91 if (strtolower($flag) == '\\flagged') {
92 $msg->is_flagged = true;
93 }
94 break;
95 case 'M':
96 if (strtolower($flag) == '$mdnsent') {
97 $msg->is_mdnsent = true;
98 }
99 break;
100 default:
101 break;
7a9e9c89 102 }
103 }
451f74a2 104 }
7a9e9c89 105 // listEntities($msg);
3d8371be 106 return $msg;
451f74a2 107}
b74ba498 108
22efa9fb 109
110
3d8371be 111/* This starts the parsing of a particular structure. It is called recursively,
8bd0068d 112 * so it can be passed different structures. It returns an object of type
113 * $message.
114 * First, it checks to see if it is a multipart message. If it is, then it
115 * handles that as it sees is necessary. If it is just a regular entity,
116 * then it parses it and adds the necessary header information (by calling out
117 * to mime_get_elements()
118 */
451f74a2 119
4d592352 120function mime_fetch_body($imap_stream, $id, $ent_id=1, $fetch_size=0) {
3d8371be 121 /* Do a bit of error correction. If we couldn't find the entity id, just guess
8bd0068d 122 * that it is the first one. That is usually the case anyway.
123 */
7c7b74b3 124
09a4bde3 125 if (!$ent_id) {
08b7f7cc 126 $cmd = "FETCH $id BODY[]";
1035e159 127 } else {
08b7f7cc 128 $cmd = "FETCH $id BODY[$ent_id]";
09a4bde3 129 }
3d8371be 130
4d592352 131 if ($fetch_size!=0) $cmd .= "<0.$fetch_size>";
da2415c1 132
6201339c 133 $data = sqimap_run_command ($imap_stream, $cmd, true, $response, $message, TRUE);
77b88425 134 do {
3d8371be 135 $topline = trim(array_shift($data));
136 } while($topline && ($topline[0] == '*') && !preg_match('/\* [0-9]+ FETCH.*/i', $topline)) ;
a4a70693 137
451f74a2 138 $wholemessage = implode('', $data);
139 if (ereg('\\{([^\\}]*)\\}', $topline, $regs)) {
3d8371be 140 $ret = substr($wholemessage, 0, $regs[1]);
141 /* There is some information in the content info header that could be important
8bd0068d 142 * in order to parse html messages. Let's get them here.
143 */
0600bdf1 144// if ($ret{0} == '<') {
6201339c 145// $data = sqimap_run_command ($imap_stream, "FETCH $id BODY[$ent_id.MIME]", true, $response, $message, TRUE);
0600bdf1 146// }
451f74a2 147 } else if (ereg('"([^"]*)"', $topline, $regs)) {
148 $ret = $regs[1];
149 } else {
150 global $where, $what, $mailbox, $passed_id, $startMessage;
3d8371be 151 $par = 'mailbox=' . urlencode($mailbox) . '&amp;passed_id=' . $passed_id;
451f74a2 152 if (isset($where) && isset($what)) {
3d8371be 153 $par .= '&amp;where=' . urlencode($where) . '&amp;what=' . urlencode($what);
a3daaaf3 154 } else {
3d8371be 155 $par .= '&amp;startMessage=' . $startMessage . '&amp;show_more=0';
451f74a2 156 }
e5ea9327 157 $par .= '&amp;response=' . urlencode($response) .
8bd0068d 158 '&amp;message=' . urlencode($message) .
159 '&amp;topline=' . urlencode($topline);
a019eeb8 160
8bd0068d 161 echo '<tt><br />' .
02474e43 162 '<table width="80%"><tr>' .
163 '<tr><td colspan="2">' .
164 _("Body retrieval error. The reason for this is most probably that the message is malformed.") .
165 '</td></tr>' .
166 '<tr><td><b>' . _("Command:") . "</td><td>$cmd</td></tr>" .
167 '<tr><td><b>' . _("Response:") . "</td><td>$response</td></tr>" .
168 '<tr><td><b>' . _("Message:") . "</td><td>$message</td></tr>" .
169 '<tr><td><b>' . _("FETCH line:") . "</td><td>$topline</td></tr>" .
170 "</table><br /></tt></font><hr />";
346817d4 171
6201339c 172 $data = sqimap_run_command ($imap_stream, "FETCH $passed_id BODY[]", true, $response, $message, TRUE);
451f74a2 173 array_shift($data);
174 $wholemessage = implode('', $data);
a019eeb8 175
346817d4 176 $ret = $wholemessage;
a3daaaf3 177 }
3d8371be 178 return $ret;
451f74a2 179}
d4467150 180
6cc670de 181function mime_print_body_lines ($imap_stream, $id, $ent_id=1, $encoding, $rStream='php://stdout') {
1035e159 182
3d8371be 183 /* Don't kill the connection if the browser is over a dialup
8bd0068d 184 * and it would take over 30 seconds to download it.
185 * Don't call set_time_limit in safe mode.
186 */
b7206e1d 187
3d8371be 188 if (!ini_get('safe_mode')) {
b7206e1d 189 set_time_limit(0);
190 }
7c7b74b3 191 /* in case of base64 encoded attachments, do not buffer them.
8bd0068d 192 Instead, echo the decoded attachment directly to screen */
7c7b74b3 193 if (strtolower($encoding) == 'base64') {
194 if (!$ent_id) {
7591f143 195 $query = "FETCH $id BODY[]";
7c7b74b3 196 } else {
7591f143 197 $query = "FETCH $id BODY[$ent_id]";
7c7b74b3 198 }
7591f143 199 sqimap_run_command($imap_stream,$query,true,$response,$message,TRUE,'sqimap_base64_decode',$rStream,true);
1d142b8d 200 } else {
7591f143 201 $body = mime_fetch_body ($imap_stream, $id, $ent_id);
202 if (is_resource($rStream)) {
203 fputs($rStream,decodeBody($body,$encoding));
204 } else {
205 echo decodeBody($body, $encoding);
206 }
1d142b8d 207 }
346817d4 208
da2415c1 209 /*
8bd0068d 210 TODO, use the same method for quoted printable.
211 However, I assume that quoted printable attachments aren't that large
212 so the performancegain / memory usage drop will be minimal.
213 If we decide to add that then we need to adapt sqimap_fread because
214 we need to split te result on \n and fread doesn't stop at \n. That
215 means we also should provide $results from sqimap_fread (by ref) to
216 te function and set $no_return to false. The $filter function for
217 quoted printable should handle unsetting of $results.
218 */
da2415c1 219 /*
8bd0068d 220 TODO 2: find out how we write to the output stream php://stdout. fwrite
221 doesn't work because 'php://stdout isn't a stream.
222 */
7c7b74b3 223
5d9c6f73 224 return;
451f74a2 225}
beb9e459 226
451f74a2 227/* -[ END MIME DECODING ]----------------------------------------------------------- */
d4467150 228
3d8371be 229/* This is here for debugging purposes. It will print out a list
8bd0068d 230 * of all the entity IDs that are in the $message object.
231 */
451f74a2 232function listEntities ($message) {
3d8371be 233 if ($message) {
3c621ba1 234 echo "<tt>" . $message->entity_id . ' : ' . $message->type0 . '/' . $message->type1 . ' parent = '. $message->parent->entity_id. '<br />';
3d8371be 235 for ($i = 0; isset($message->entities[$i]); $i++) {
236 echo "$i : ";
237 $msg = listEntities($message->entities[$i]);
238
239 if ($msg) {
240 echo "return: ";
241 return $msg;
242 }
243 }
a4a70693 244 }
451f74a2 245}
f0c4dc12 246
f792c641 247function getPriorityStr($priority) {
3d8371be 248 $priority_level = substr($priority,0,1);
249
250 switch($priority_level) {
251 /* Check for a higher then normal priority. */
252 case '1':
253 case '2':
254 $priority_string = _("High");
255 break;
256
257 /* Check for a lower then normal priority. */
258 case '4':
259 case '5':
260 $priority_string = _("Low");
261 break;
262
263 /* Check for a normal priority. */
264 case '3':
265 default:
266 $priority_level = '3';
267 $priority_string = _("Normal");
268 break;
269
270 }
271 return $priority_string;
f792c641 272}
273
451f74a2 274/* returns a $message object for a particular entity id */
275function getEntity ($message, $ent_id) {
a4a70693 276 return $message->getEntity($ent_id);
451f74a2 277}
8beafbbc 278
3d8371be 279/* translateText
8bd0068d 280 * Extracted from strings.php 23/03/2002
281 */
da4c66e8 282
283function translateText(&$body, $wrap_at, $charset) {
3d8371be 284 global $where, $what; /* from searching */
285 global $color; /* color theme */
da4c66e8 286
202bcbcc 287 // require_once(SM_PATH . 'functions/url_parser.php');
da4c66e8 288
289 $body_ary = explode("\n", $body);
da4c66e8 290 for ($i=0; $i < count($body_ary); $i++) {
291 $line = $body_ary[$i];
292 if (strlen($line) - 2 >= $wrap_at) {
c7aff938 293 sqWordWrap($line, $wrap_at, $charset);
da4c66e8 294 }
295 $line = charset_decode($charset, $line);
296 $line = str_replace("\t", ' ', $line);
297
298 parseUrl ($line);
299
3d8371be 300 $quotes = 0;
da4c66e8 301 $pos = 0;
3d8371be 302 $j = strlen($line);
da4c66e8 303
3d8371be 304 while ($pos < $j) {
da4c66e8 305 if ($line[$pos] == ' ') {
3d8371be 306 $pos++;
da4c66e8 307 } else if (strpos($line, '&gt;', $pos) === $pos) {
308 $pos += 4;
3d8371be 309 $quotes++;
da4c66e8 310 } else {
311 break;
312 }
313 }
3d8371be 314
83c94382 315 if ($quotes % 2) {
d0814c02 316 $line = '<span class="quote1">' . $line . '</span>';
4c25967c 317 } elseif ($quotes) {
d0814c02 318 $line = '<span class="quote2">' . $line . '</span>';
da4c66e8 319 }
3d8371be 320
da4c66e8 321 $body_ary[$i] = $line;
322 }
323 $body = '<pre>' . implode("\n", $body_ary) . '</pre>';
324}
325
a2bfcbce 326/**
da1b55ad 327 * This returns a parsed string called $body. That string can then
328 * be displayed as the actual message in the HTML. It contains
329 * everything needed, including HTML Tags, Attachments at the
330 * bottom, etc.
f8a1ed5a 331 *
da1b55ad 332 * Since 1.2.0 function uses message_body hook.
333 * Till 1.3.0 function included output of formatAttachments().
334 *
335 * @param resource $imap_stream imap connection resource
336 * @param object $message squirrelmail message object
337 * @param array $color squirrelmail color theme array
338 * @param integer $wrap_at number of characters per line
339 * @param string $ent_num (since 1.3.0) message part id
340 * @param integer $id (since 1.3.0) message id
341 * @param string $mailbox (since 1.3.0) imap folder name
41f701c1 342 * @param boolean $clean (since 1.5.1) Do not output stuff that's irrelevant for the printable version.
da1b55ad 343 * @return string html formated message text
344 */
a2bfcbce 345function formatBody($imap_stream, $message, $color, $wrap_at, $ent_num, $id, $mailbox='INBOX', $clean=FALSE) {
3d8371be 346 /* This if statement checks for the entity to show as the
8bd0068d 347 * primary message. To add more of them, just put them in the
348 * order that is their priority.
349 */
ce68b76b 350 global $startMessage, $languages, $squirrelmail_language,
40a34e57 351 $show_html_default, $sort, $has_unsafe_images, $passed_ent_id,
14c85e39 352 $use_iframe, $iframe_height, $download_and_unsafe_link,
353 $download_href, $unsafe_image_toggle_href, $unsafe_image_toggle_text;
2c25d36a 354
355 // workaround for not updated config.php
356 if (! isset($use_iframe)) $use_iframe = false;
77bfbd2e 357
5262d9a6 358 if( !sqgetGlobalVar('view_unsafe_images', $view_unsafe_images, SQ_GET) ) {
359 $view_unsafe_images = false;
77bfbd2e 360 }
d03c24f4 361
cc34b00d 362 $body = '';
23bcec6f 363 $urlmailbox = urlencode($mailbox);
451f74a2 364 $body_message = getEntity($message, $ent_num);
365 if (($body_message->header->type0 == 'text') ||
8bd0068d 366 ($body_message->header->type0 == 'rfc822')) {
3d8371be 367 $body = mime_fetch_body ($imap_stream, $id, $ent_num);
451f74a2 368 $body = decodeBody($body, $body_message->header->encoding);
e842b215 369
370 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
8bd0068d 371 function_exists($languages[$squirrelmail_language]['XTRA_CODE'] . '_decode')) {
e842b215 372 if (mb_detect_encoding($body) != 'ASCII') {
33a55f5a 373 $body = call_user_func($languages[$squirrelmail_language]['XTRA_CODE'] . '_decode',$body);
e842b215 374 }
375 }
451f74a2 376 $hookResults = do_hook("message_body", $body);
377 $body = $hookResults[1];
23bcec6f 378
3d8371be 379 /* If there are other types that shouldn't be formatted, add
8bd0068d 380 * them here.
381 */
3d8371be 382
451f74a2 383 if ($body_message->header->type1 == 'html') {
3d8371be 384 if ($show_html_default <> 1) {
85015544 385 $entity_conv = array('&nbsp;' => ' ',
8bd0068d 386 '<p>' => "\n",
387 '<P>' => "\n",
388 '<br>' => "\n",
389 '<BR>' => "\n",
390 '<br />' => "\n",
391 '<BR />' => "\n",
392 '&gt;' => '>',
393 '&lt;' => '<');
85015544 394 $body = strtr($body, $entity_conv);
3d8371be 395 $body = strip_tags($body);
85015544 396 $body = trim($body);
397 translateText($body, $wrap_at,
8bd0068d 398 $body_message->header->getParameter('charset'));
2c25d36a 399 } elseif ($use_iframe && ! $clean) {
400 // $clean is used to remove iframe in printable view.
401
84410f31 402 /**
403 * If we don't add html message between iframe tags,
404 * we must detect unsafe images and modify $has_unsafe_images.
f8a1ed5a 405 */
758a7889 406 $html_body = magicHTML($body, $id, $message, $mailbox);
b6c52e61 407 // Convert character set in order to display html mails in different character set
408 $html_body = charset_decode($body_message->header->getParameter('charset'),$html_body,false,true);
84410f31 409
2c25d36a 410 // creating iframe url
411 $iframeurl=sqm_baseuri().'src/view_html.php?'
f8a1ed5a 412 . 'mailbox=' . $urlmailbox
2c25d36a 413 . '&amp;passed_id=' . $id
414 . '&amp;ent_id=' . $ent_num
415 . '&amp;view_unsafe_images=' . (int) $view_unsafe_images;
416
79d58d4c 417 global $oTemplate;
418 $oTemplate->assign('iframe_url', $iframeurl);
419 $oTemplate->assign('html_body', $html_body);
420
421 $body = $oTemplate->fetch('read_html_iframe.tpl');
a3daaaf3 422 } else {
2c25d36a 423 // old way of html rendering
f8a1ed5a 424 $body = magicHTML($body, $id, $message, $mailbox);
b6c52e61 425 /**
758a7889 426 * convert character set. charset_decode does not remove html special chars
b6c52e61 427 * applied by magicHTML functions and does not sanitize them second time if
758a7889 428 * fourth argument is true.
429 */
b6c52e61 430 $body = charset_decode($body_message->header->getParameter('charset'),$body,false,true);
a3daaaf3 431 }
451f74a2 432 } else {
3d8371be 433 translateText($body, $wrap_at,
8bd0068d 434 $body_message->header->getParameter('charset'));
451f74a2 435 }
a2bfcbce 436
437 // if this is the clean display (i.e. printer friendly), stop here.
438 if ( $clean ) {
439 return $body;
440 }
441
40a34e57 442 $download_and_unsafe_link = '';
443
83cf04bd 444 $link = 'passed_id=' . $id . '&amp;ent_id='.$ent_num.
8bd0068d 445 '&amp;mailbox=' . $urlmailbox .'&amp;sort=' . $sort .
446 '&amp;startMessage=' . $startMessage . '&amp;show_more=0';
08b7f7cc 447 if (isset($passed_ent_id)) {
448 $link .= '&amp;passed_ent_id='.$passed_ent_id;
449 }
14c85e39 450 $download_href = SM_PATH . 'src/download.php?absolute_dl=true&amp;' . $link;
451 $download_and_unsafe_link .= '&nbsp;|&nbsp;<a href="'. $download_href .'">' . _("Download this as a file") . '</a>';
7aad7b77 452 if ($view_unsafe_images) {
23f617b8 453 $text = _("Hide Unsafe Images");
7aad7b77 454 } else {
08b7f7cc 455 if (isset($has_unsafe_images) && $has_unsafe_images) {
456 $link .= '&amp;view_unsafe_images=1';
457 $text = _("View Unsafe Images");
458 } else {
459 $text = '';
460 }
3d8371be 461 }
83cf04bd 462 if($text != '') {
14c85e39 463 $unsafe_image_toggle_href = SM_PATH . 'src/read_body.php?'.$link;
464 $unsafe_image_toggle_text = $text;
465 $download_and_unsafe_link .= '&nbsp;|&nbsp;<a href="'. $unsafe_image_toggle_href .'">' . $text . '</a>';
83cf04bd 466 }
3d8371be 467 }
468 return $body;
451f74a2 469}
b74ba498 470
da1b55ad 471/**
d67f519a 472 * Generate attachments array for passing to templates. Separated from
473 * formatAttachments() below so that the same array can be given to the
474 * print-friendly version.
475 *
476 * @since 1.5.2
da1b55ad 477 * @param object $message SquirrelMail message object
478 * @param array $exclude_id message parts that are not attachments.
479 * @param string $mailbox mailbox name
480 * @param integer $id message id
da1b55ad 481 */
d67f519a 482function buildAttachmentArray($message, $exclude_id, $mailbox, $id) {
483 global $where, $what, $startMessage, $color, $passed_ent_id, $base_uri;
451f74a2 484
23bcec6f 485 $att_ar = $message->getAttachments($exclude_id);
23bcec6f 486 $urlMailbox = urlencode($mailbox);
487
d67f519a 488 $attachments = array();
23bcec6f 489 foreach ($att_ar as $att) {
fdc9d9b5 490 $ent = $att->entity_id;
2e25760a 491 $header = $att->header;
f0c4dc12 492 $type0 = strtolower($header->type0);
493 $type1 = strtolower($header->type1);
2e25760a 494 $name = '';
d0187bd6 495 $links = array();
21dab2dc 496 $links['download link']['text'] = _("Download");
202bcbcc 497 $links['download link']['href'] = $base_uri .
8bd0068d 498 "src/download.php?absolute_dl=true&amp;passed_id=$id&amp;mailbox=$urlMailbox&amp;ent_id=$ent";
d0187bd6 499
2e25760a 500 if ($type0 =='message' && $type1 == 'rfc822') {
202bcbcc 501 $default_page = $base_uri . 'src/read_body.php';
2e25760a 502 $rfc822_header = $att->rfc822_header;
098ea084 503 $filename = $rfc822_header->subject;
6cc08d8b 504 if (trim( $filename ) == '') {
505 $filename = 'untitled-[' . $ent . ']' ;
08b7f7cc 506 }
2e25760a 507 $from_o = $rfc822_header->from;
508 if (is_object($from_o)) {
04ea844e 509 $from_name = decodeHeader($from_o->getAddress(false));
7e697748 510 } elseif (is_array($from_o) && count($from_o) && is_object($from_o[0])) {
511 // something weird happens when a digest message is opened and you return to the digest
512 // now the from object is part of an array. Probably the parseHeader call overwrites the info
513 // retrieved from the bodystructure in a different way. We need to fix this later.
514 // possible starting point, do not fetch header we already have and inspect how
515 // the rfc822_header object behaves.
516 $from_name = decodeHeader($from_o[0]->getAddress(false));
2e25760a 517 } else {
518 $from_name = _("Unknown sender");
f0c4dc12 519 }
d0187bd6 520 $description = _("From").': '.$from_name;
23bcec6f 521 } else {
202bcbcc 522 $default_page = $base_uri . 'src/download.php';
02474e43 523 $filename = $att->getFilename();
f810c0b2 524 if ($header->description) {
098ea084 525 $description = decodeHeader($header->description);
f810c0b2 526 } else {
3d8371be 527 $description = '';
528 }
2e25760a 529 }
530
531 $display_filename = $filename;
3d8371be 532 if (isset($passed_ent_id)) {
533 $passed_ent_id_link = '&amp;passed_ent_id='.$passed_ent_id;
534 } else {
535 $passed_ent_id_link = '';
536 }
537 $defaultlink = $default_page . "?startMessage=$startMessage"
8bd0068d 538 . "&amp;passed_id=$id&amp;mailbox=$urlMailbox"
539 . '&amp;ent_id='.$ent.$passed_ent_id_link;
2e25760a 540 if ($where && $what) {
8bd0068d 541 $defaultlink .= '&amp;where='. urlencode($where).'&amp;what='.urlencode($what);
2e25760a 542 }
21dab2dc 543
3d8371be 544 /* This executes the attachment hook with a specific MIME-type.
8bd0068d 545 * If that doesn't have results, it tries if there's a rule
9b94c54d 546 * for a more generic type. Finally, a hook for ALL attachment
547 * types is run as well.
8bd0068d 548 */
3d8371be 549 $hookresults = do_hook("attachment $type0/$type1", $links,
8bd0068d 550 $startMessage, $id, $urlMailbox, $ent, $defaultlink,
551 $display_filename, $where, $what);
9b94c54d 552// FIXME: How does this code ever get executed? $hookresults[1] is $links
553// from above, and should always be returned by do_hook(). I will
554// test this and fix if needed (but it has been working, right???)
555// and get rid of these comments (Paul)
556// UPDATE: Preliminary testing shows that in fact I am correct that the
557// following never gets executed (unless a strange plugin actually
558// unsets the contents of the links)... how did this ever work???
559// Can someonen please show a plugin that worked here?
3d8371be 560 if(count($hookresults[1]) <= 1) {
561 $hookresults = do_hook("attachment $type0/*", $links,
8bd0068d 562 $startMessage, $id, $urlMailbox, $ent, $defaultlink,
563 $display_filename, $where, $what);
2e25760a 564 }
9b94c54d 565 $hookresults = do_hook("attachment */*", $hookresults[1],
566 $startMessage, $id, $urlMailbox, $ent, $hookresults[6],
567 $display_filename, $where, $what);
451f74a2 568
3d8371be 569 $links = $hookresults[1];
570 $defaultlink = $hookresults[6];
77b88425 571
d67f519a 572 $this_attachment = array();
573 $this_attachment['Name'] = decodeHeader($display_filename);
574 $this_attachment['Description'] = $description;
575 $this_attachment['DefaultHREF'] = $defaultlink;
576 $this_attachment['DownloadHREF'] = $links['download link']['href'];
577 $this_attachment['ViewHREF'] = isset($links['attachment_common']) ? $links['attachment_common']['href'] : '';
578 $this_attachment['Size'] = $header->size;
579 $this_attachment['ContentType'] = htmlspecialchars($type0 .'/'. $type1);
580 $this_attachment['OtherLinks'] = array();
3d8371be 581 foreach ($links as $val) {
d0187bd6 582 if ($val['text']==_("Download") || $val['text'] == _("View"))
583 continue;
584 if (empty($val['text']) && empty($val['extra']))
585 continue;
586
d67f519a 587 $temp = array();
588 $temp['HREF'] = $val['href'];
589 $temp['Text'] = (empty($val['text']) ? '' : $val['text']) . (empty($val['extra']) ? '' : $val['extra']);
590 $this_attachment['OtherLinks'][] = $temp;
2e25760a 591 }
d67f519a 592 $attachments[] = $this_attachment;
d0187bd6 593
3d8371be 594 unset($links);
2e25760a 595 }
d67f519a 596
597 return $attachments;
598}
599
600/**
601 * Displays attachment links and information
602 *
603 * Since 1.3.0 function is not included in formatBody() call.
604 *
605 * Since 1.0.2 uses attachment $type0/$type1 hook.
606 * Since 1.2.5 uses attachment $type0/* hook.
607 * Since 1.5.0 uses attachments_bottom hook.
608 * Since 1.5.2 uses templates and does *not* return a value.
609 *
610 * @param object $message SquirrelMail message object
611 * @param array $exclude_id message parts that are not attachments.
612 * @param string $mailbox mailbox name
613 * @param integer $id message id
614 */
615function formatAttachments($message, $exclude_id, $mailbox, $id) {
616 global $oTemplate;
617
618 $attach = buildAttachmentArray($message, $exclude_id, $mailbox, $id);
d0187bd6 619
620 $oTemplate->assign('attachments', $attach);
621 $oTemplate->display('read_attachments.tpl');
451f74a2 622}
b74ba498 623
7c7b74b3 624function sqimap_base64_decode(&$string) {
7c0ec1d8 625
b17a8968 626 // Base64 encoded data goes in pairs of 4 bytes. To achieve on the
7c0ec1d8 627 // fly decoding (to reduce memory usage) you have to check if the
628 // data has incomplete pairs
629
b17a8968 630 // Remove the noise in order to check if the 4 bytes pairs are complete
7c0ec1d8 631 $string = str_replace(array("\r\n","\n", "\r", " "),array('','','',''),$string);
632
42ce44f8 633 $sStringRem = '';
7c0ec1d8 634 $iMod = strlen($string) % 4;
635 if ($iMod) {
636 $sStringRem = substr($string,-$iMod);
b17a8968 637 // Check if $sStringRem contains padding characters
7c0ec1d8 638 if (substr($sStringRem,-1) != '=') {
639 $string = substr($string,0,-$iMod);
640 } else {
641 $sStringRem = '';
642 }
643 }
7c7b74b3 644 $string = base64_decode($string);
7c0ec1d8 645 return $sStringRem;
7c7b74b3 646}
647
fdf7cef1 648/**
649 * Decodes encoded message body
650 *
651 * This function decodes the body depending on the encoding type.
652 * Currently quoted-printable and base64 encodings are supported.
653 * decode_body hook was added to this function in 1.4.2/1.5.0
654 * @param string $body encoded message body
655 * @param string $encoding used encoding
656 * @return string decoded string
657 * @since 1.0
658 */
451f74a2 659function decodeBody($body, $encoding) {
83be314a 660
b583c3e8 661 $body = str_replace("\r\n", "\n", $body);
662 $encoding = strtolower($encoding);
3d8371be 663
5166f86a 664 $encoding_handler = do_hook_function('decode_body', $encoding);
665
666
667 // plugins get first shot at decoding the body
668 //
669 if (!empty($encoding_handler) && function_exists($encoding_handler)) {
670 $body = $encoding_handler('decode', $body);
671
fdf7cef1 672 } elseif ($encoding == 'quoted-printable' ||
8bd0068d 673 $encoding == 'quoted_printable') {
fdf7cef1 674 /**
675 * quoted_printable_decode() function is broken in older
676 * php versions. Text with \r\n decoding was fixed only
758a7889 677 * in php 4.3.0. Minimal code requirement 4.0.4 +
fdf7cef1 678 * str_replace("\r\n", "\n", $body); call.
679 */
b583c3e8 680 $body = quoted_printable_decode($body);
fdf7cef1 681 } elseif ($encoding == 'base64') {
b583c3e8 682 $body = base64_decode($body);
683 }
3d8371be 684
b583c3e8 685 // All other encodings are returned raw.
3d8371be 686 return $body;
451f74a2 687}
688
9f7f68c3 689/**
8bd0068d 690 * Decodes headers
691 *
692 * This functions decode strings that is encoded according to
693 * RFC1522 (MIME Part Two: Message Header Extensions for Non-ASCII Text).
694 * Patched by Christian Schmidt <christian@ostenfeld.dk> 23/03/2002
695 *
696 * @param string $string header string that has to be made readable
697 * @param boolean $utfencode change message in order to be readable on user's charset. defaults to true
698 * @param boolean $htmlsave preserve spaces and sanitize html special characters. defaults to true
699 * @param boolean $decide decide if string can be utfencoded. defaults to false
700 * @return string decoded header string
701 */
9f7f68c3 702function decodeHeader ($string, $utfencode=true,$htmlsave=true,$decide=false) {
d6f584fc 703 global $languages, $squirrelmail_language,$default_charset;
79e07c7e 704 if (is_array($string)) {
705 $string = implode("\n", $string);
706 }
da2415c1 707
10dec454 708 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
8bd0068d 709 function_exists($languages[$squirrelmail_language]['XTRA_CODE'] . '_decodeheader')) {
33a55f5a 710 $string = call_user_func($languages[$squirrelmail_language]['XTRA_CODE'] . '_decodeheader', $string);
08b7f7cc 711 // Do we need to return at this point?
712 // return $string;
83be314a 713 }
79e07c7e 714 $i = 0;
08b7f7cc 715 $iLastMatch = -2;
db65b6b0 716 $encoded = true;
0a06275a 717
098ea084 718 $aString = explode(' ',$string);
08b7f7cc 719 $ret = '';
098ea084 720 foreach ($aString as $chunk) {
358a78a1 721 if ($encoded && $chunk === '') {
08b7f7cc 722 continue;
358a78a1 723 } elseif ($chunk === '') {
08b7f7cc 724 $ret .= ' ';
725 continue;
726 }
098ea084 727 $encoded = false;
08b7f7cc 728 /* if encoded words are not separated by a linear-space-white we still catch them */
729 $j = $i-1;
7e6ca3e8 730
08b7f7cc 731 while ($match = preg_match('/^(.*)=\?([^?]*)\?(Q|B)\?([^?]*)\?=(.*)$/Ui',$chunk,$res)) {
732 /* if the last chunk isn't an encoded string then put back the space, otherwise don't */
733 if ($iLastMatch !== $j) {
734 if ($htmlsave) {
9f7f68c3 735 $ret .= '&#32;';
08b7f7cc 736 } else {
737 $ret .= ' ';
738 }
739 }
740 $iLastMatch = $i;
741 $j = $i;
cb718de0 742 if ($htmlsave) {
743 $ret .= htmlspecialchars($res[1]);
744 } else {
745 $ret .= $res[1];
746 }
098ea084 747 $encoding = ucfirst($res[3]);
d6f584fc 748
749 /* decide about valid decoding */
750 if ($decide && is_conversion_safe($res[2])) {
8bd0068d 751 $utfencode=true;
752 $can_be_encoded=true;
d6f584fc 753 } else {
8bd0068d 754 $can_be_encoded=false;
d6f584fc 755 }
098ea084 756 switch ($encoding)
757 {
8bd0068d 758 case 'B':
759 $replace = base64_decode($res[4]);
760 if ($utfencode) {
761 if ($can_be_encoded) {
762 /* convert string to different charset,
763 * if functions asks for it (usually in compose)
764 */
bc6c0fba 765 $ret .= charset_convert($res[2],$replace,$default_charset,$htmlsave);
8bd0068d 766 } else {
767 // convert string to html codes in order to display it
768 $ret .= charset_decode($res[2],$replace);
769 }
fab65ca9 770 } else {
8bd0068d 771 if ($htmlsave) {
772 $replace = htmlspecialchars($replace);
773 }
774 $ret.= $replace;
fab65ca9 775 }
8bd0068d 776 break;
777 case 'Q':
778 $replace = str_replace('_', ' ', $res[4]);
779 $replace = preg_replace('/=([0-9a-f]{2})/ie', 'chr(hexdec("\1"))',
780 $replace);
781 if ($utfencode) {
782 if ($can_be_encoded) {
783 /* convert string to different charset,
784 * if functions asks for it (usually in compose)
785 */
bc6c0fba 786 $replace = charset_convert($res[2], $replace,$default_charset,$htmlsave);
8bd0068d 787 } else {
788 // convert string to html codes in order to display it
789 $replace = charset_decode($res[2], $replace);
790 }
791 } else {
792 if ($htmlsave) {
793 $replace = htmlspecialchars($replace);
794 }
098ea084 795 }
8bd0068d 796 $ret .= $replace;
797 break;
798 default:
799 break;
79e07c7e 800 }
098ea084 801 $chunk = $res[5];
802 $encoded = true;
08b7f7cc 803 }
804 if (!$encoded) {
805 if ($htmlsave) {
9f7f68c3 806 $ret .= '&#32;';
08b7f7cc 807 } else {
808 $ret .= ' ';
da2415c1 809 }
08b7f7cc 810 }
dc3d13a7 811
812 if (!$encoded && $htmlsave) {
813 $ret .= htmlspecialchars($chunk);
814 } else {
815 $ret .= $chunk;
816 }
098ea084 817 ++$i;
818 }
fd81e884 819 /* remove the first added space */
820 if ($ret) {
821 if ($htmlsave) {
9f7f68c3 822 $ret = substr($ret,5);
fd81e884 823 } else {
824 $ret = substr($ret,1);
825 }
826 }
da2415c1 827
08b7f7cc 828 return $ret;
451f74a2 829}
830
9f7f68c3 831/**
a24cf710 832 * Encodes header
8bd0068d 833 *
a24cf710 834 * Function uses XTRA_CODE _encodeheader function, if such function exists.
a24cf710 835 *
758a7889 836 * Function uses Q encoding by default and encodes a string according to RFC
837 * 1522 for use in headers if it contains 8-bit characters or anything that
a24cf710 838 * looks like it should be encoded.
8bd0068d 839 *
758a7889 840 * Function switches to B encoding and encodeHeaderBase64() function, if
841 * string is 8bit and multibyte character set supported by mbstring extension
842 * is used. It can cause E_USER_NOTICE errors, if interface is used with
f270a6eb 843 * multibyte character set unsupported by mbstring extension.
844 *
8bd0068d 845 * @param string $string header string, that has to be encoded
846 * @return string quoted-printable encoded string
f270a6eb 847 * @todo make $mb_charsets system wide constant
8bd0068d 848 */
451f74a2 849function encodeHeader ($string) {
6fbd125b 850 global $default_charset, $languages, $squirrelmail_language;
83be314a 851
10dec454 852 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
8bd0068d 853 function_exists($languages[$squirrelmail_language]['XTRA_CODE'] . '_encodeheader')) {
33a55f5a 854 return call_user_func($languages[$squirrelmail_language]['XTRA_CODE'] . '_encodeheader', $string);
83be314a 855 }
793cc001 856
a24cf710 857 // Use B encoding for multibyte charsets
f270a6eb 858 $mb_charsets = array('utf-8','big5','gb2313','euc-kr');
859 if (in_array($default_charset,$mb_charsets) &&
860 in_array($default_charset,sq_mb_list_encodings()) &&
861 sq_is8bit($string)) {
862 return encodeHeaderBase64($string,$default_charset);
863 } elseif (in_array($default_charset,$mb_charsets) &&
864 sq_is8bit($string) &&
865 ! in_array($default_charset,sq_mb_list_encodings())) {
866 // Add E_USER_NOTICE error here (can cause 'Cannot add header information' warning in compose.php)
867 // trigger_error('encodeHeader: Multibyte character set unsupported by mbstring extension.',E_USER_NOTICE);
868 }
a24cf710 869
451f74a2 870 // Encode only if the string contains 8-bit characters or =?
3d8371be 871 $j = strlen($string);
098ea084 872 $max_l = 75 - strlen($default_charset) - 7;
873 $aRet = array();
451f74a2 874 $ret = '';
c96c32f4 875 $iEncStart = $enc_init = false;
0d53f0f9 876 $cur_l = $iOffset = 0;
3d8371be 877 for($i = 0; $i < $j; ++$i) {
c96c32f4 878 switch($string{$i})
879 {
8bd0068d 880 case '=':
881 case '<':
882 case '>':
883 case ',':
884 case '?':
885 case '_':
886 if ($iEncStart === false) {
887 $iEncStart = $i;
888 }
889 $cur_l+=3;
890 if ($cur_l > ($max_l-2)) {
891 /* if there is an stringpart that doesn't need encoding, add it */
08b7f7cc 892 $aRet[] = substr($string,$iOffset,$iEncStart-$iOffset);
c96c32f4 893 $aRet[] = "=?$default_charset?Q?$ret?=";
894 $iOffset = $i;
895 $cur_l = 0;
896 $ret = '';
897 $iEncStart = false;
08b7f7cc 898 } else {
8bd0068d 899 $ret .= sprintf("=%02X",ord($string{$i}));
c96c32f4 900 }
8bd0068d 901 break;
902 case '(':
903 case ')':
904 if ($iEncStart !== false) {
08b7f7cc 905 $aRet[] = substr($string,$iOffset,$iEncStart-$iOffset);
8bd0068d 906 $aRet[] = "=?$default_charset?Q?$ret?=";
c96c32f4 907 $iOffset = $i;
8bd0068d 908 $cur_l = 0;
909 $ret = '';
910 $iEncStart = false;
c96c32f4 911 }
8bd0068d 912 break;
913 case ' ':
c96c32f4 914 if ($iEncStart !== false) {
098ea084 915 $cur_l++;
916 if ($cur_l > $max_l) {
08b7f7cc 917 $aRet[] = substr($string,$iOffset,$iEncStart-$iOffset);
c96c32f4 918 $aRet[] = "=?$default_charset?Q?$ret?=";
c96c32f4 919 $iOffset = $i;
920 $cur_l = 0;
098ea084 921 $ret = '';
8bd0068d 922 $iEncStart = false;
08b7f7cc 923 } else {
8bd0068d 924 $ret .= '_';
c96c32f4 925 }
3d8371be 926 }
8bd0068d 927 break;
928 default:
929 $k = ord($string{$i});
930 if ($k > 126) {
931 if ($iEncStart === false) {
932 // do not start encoding in the middle of a string, also take the rest of the word.
933 $sLeadString = substr($string,0,$i);
934 $aLeadString = explode(' ',$sLeadString);
935 $sToBeEncoded = array_pop($aLeadString);
936 $iEncStart = $i - strlen($sToBeEncoded);
937 $ret .= $sToBeEncoded;
938 $cur_l += strlen($sToBeEncoded);
939 }
940 $cur_l += 3;
941 /* first we add the encoded string that reached it's max size */
942 if ($cur_l > ($max_l-2)) {
943 $aRet[] = substr($string,$iOffset,$iEncStart-$iOffset);
944 $aRet[] = "=?$default_charset?Q?$ret?= "; /* the next part is also encoded => separate by space */
945 $cur_l = 3;
946 $ret = '';
947 $iOffset = $i;
948 $iEncStart = $i;
949 }
950 $enc_init = true;
951 $ret .= sprintf("=%02X", $k);
952 } else {
953 if ($iEncStart !== false) {
954 $cur_l++;
955 if ($cur_l > $max_l) {
956 $aRet[] = substr($string,$iOffset,$iEncStart-$iOffset);
957 $aRet[] = "=?$default_charset?Q?$ret?=";
958 $iEncStart = false;
959 $iOffset = $i;
960 $cur_l = 0;
961 $ret = '';
962 } else {
963 $ret .= $string{$i};
964 }
965 }
966 }
967 break;
f7b3ba37 968 }
451f74a2 969 }
793cc001 970
c96c32f4 971 if ($enc_init) {
972 if ($iEncStart !== false) {
973 $aRet[] = substr($string,$iOffset,$iEncStart-$iOffset);
974 $aRet[] = "=?$default_charset?Q?$ret?=";
975 } else {
976 $aRet[] = substr($string,$iOffset);
977 }
978 $string = implode('',$aRet);
451f74a2 979 }
3d8371be 980 return $string;
451f74a2 981}
b74ba498 982
f270a6eb 983/**
984 * Encodes string according to rfc2047 B encoding header formating rules
985 *
758a7889 986 * It is recommended way to encode headers with character sets that store
f270a6eb 987 * symbols in more than one byte.
988 *
989 * Function requires mbstring support. If required mbstring functions are missing,
990 * function returns false and sets E_USER_WARNING level error message.
991 *
758a7889 992 * Minimal requirements - php 4.0.6 with mbstring extension. Please note,
993 * that mbstring functions will generate E_WARNING errors, if unsupported
f270a6eb 994 * character set is used. mb_encode_mimeheader function provided by php
995 * mbstring extension is not used in order to get better control of header
996 * encoding.
997 *
758a7889 998 * Used php code functions - function_exists(), trigger_error(), strlen()
999 * (is used with charset names and base64 strings). Used php mbstring
f270a6eb 1000 * functions - mb_strlen and mb_substr.
1001 *
758a7889 1002 * Related documents: rfc 2045 (BASE64 encoding), rfc 2047 (mime header
f270a6eb 1003 * encoding), rfc 2822 (header folding)
1004 *
1005 * @param string $string header string that must be encoded
758a7889 1006 * @param string $charset character set. Must be supported by mbstring extension.
f270a6eb 1007 * Use sq_mb_list_encodings() to detect supported charsets.
1008 * @return string string encoded according to rfc2047 B encoding formating rules
1009 * @since 1.5.1
1010 * @todo First header line can be wrapped to $iMaxLength - $HeaderFieldLength - 1
1011 * @todo Do we want to control max length of header?
1012 * @todo Do we want to control EOL (end-of-line) marker?
1013 * @todo Do we want to translate error message?
1014 */
1015function encodeHeaderBase64($string,$charset) {
1016 /**
1017 * Check mbstring function requirements.
1018 */
1019 if (! function_exists('mb_strlen') ||
1020 ! function_exists('mb_substr')) {
1021 // set E_USER_WARNING
1022 trigger_error('encodeHeaderBase64: Required mbstring functions are missing.',E_USER_WARNING);
1023 // return false
1024 return false;
1025 }
1026
1027 // initial return array
1028 $aRet = array();
1029
1030 /**
1031 * header length = 75 symbols max (same as in encodeHeader)
1032 * remove $charset length
1033 * remove =? ? ?= (5 chars)
1034 * remove 2 more chars (\r\n ?)
1035 */
1036 $iMaxLength = 75 - strlen($charset) - 7;
1037
1038 // set first character position
1039 $iStartCharNum = 0;
1040
1041 // loop through all characters. count characters and not bytes.
1042 for ($iCharNum=1; $iCharNum<=mb_strlen($string,$charset); $iCharNum++) {
1043 // encode string from starting character to current character.
1044 $encoded_string = base64_encode(mb_substr($string,$iStartCharNum,$iCharNum-$iStartCharNum,$charset));
1045
1046 // Check encoded string length
1047 if(strlen($encoded_string)>$iMaxLength) {
1048 // if string exceeds max length, reduce number of encoded characters and add encoded string part to array
1049 $aRet[] = base64_encode(mb_substr($string,$iStartCharNum,$iCharNum-$iStartCharNum-1,$charset));
1050
1051 // set new starting character
1052 $iStartCharNum = $iCharNum-1;
1053
1054 // encode last char (in case it is last character in string)
1055 $encoded_string = base64_encode(mb_substr($string,$iStartCharNum,$iCharNum-$iStartCharNum,$charset));
1056 } // if string is shorter than max length - add next character
1057 }
1058
1059 // add last encoded string to array
1060 $aRet[] = $encoded_string;
1061
1062 // set initial return string
1063 $sRet = '';
1064
1065 // loop through encoded strings
1066 foreach($aRet as $string) {
1067 // TODO: Do we want to control EOL (end-of-line) marker
1068 if ($sRet!='') $sRet.= " ";
1069
1070 // add header tags and encoded string to return string
1071 $sRet.= '=?'.$charset.'?B?'.$string.'?=';
1072 }
1073
1074 return $sRet;
1075}
1076
691a2d25 1077/* This function trys to locate the entity_id of a specific mime element */
3d8371be 1078function find_ent_id($id, $message) {
a171b359 1079 for ($i = 0, $ret = ''; $ret == '' && $i < count($message->entities); $i++) {
1080 if ($message->entities[$i]->header->type0 == 'multipart') {
3d8371be 1081 $ret = find_ent_id($id, $message->entities[$i]);
451f74a2 1082 } else {
3d8371be 1083 if (strcasecmp($message->entities[$i]->header->id, $id) == 0) {
d8cffbab 1084// if (sq_check_save_extension($message->entities[$i])) {
8bd0068d 1085 return $message->entities[$i]->entity_id;
da2415c1 1086// }
c8f5f606 1087 } elseif (!empty($message->entities[$i]->header->parameters['name'])) {
1088 /**
1089 * This is part of a fix for Outlook Express 6.x generating
1090 * cid URLs without creating content-id headers
1091 * @@JA - 20050207
1092 */
1093 if (strcasecmp($message->entities[$i]->header->parameters['name'], $id) == 0) {
1094 return $message->entities[$i]->entity_id;
1095 }
3d8371be 1096 }
a3daaaf3 1097 }
451f74a2 1098 }
3d8371be 1099 return $ret;
451f74a2 1100}
a3daaaf3 1101
e5e9381a 1102function sq_check_save_extension($message) {
1103 $filename = $message->getFilename();
1104 $ext = substr($filename, strrpos($filename,'.')+1);
1105 $save_extensions = array('jpg','jpeg','gif','png','bmp');
3d8371be 1106 return in_array($ext, $save_extensions);
e5e9381a 1107}
1108
1109
691a2d25 1110/**
8bd0068d 1111 ** HTMLFILTER ROUTINES
1112 */
451f74a2 1113
2dd879b8 1114/**
0493ed11 1115 * This function checks attribute values for entity-encoded values
1116 * and returns them translated into 8-bit strings so we can run
1117 * checks on them.
8bd0068d 1118 *
0493ed11 1119 * @param $attvalue A string to run entity check against.
1120 * @return Nothing, modifies a reference value.
8bd0068d 1121 */
0493ed11 1122function sq_defang(&$attvalue){
1123 $me = 'sq_defang';
2dd879b8 1124 /**
0493ed11 1125 * Skip this if there aren't ampersands or backslashes.
8bd0068d 1126 */
0493ed11 1127 if (strpos($attvalue, '&') === false
1128 && strpos($attvalue, '\\') === false){
1129 return;
2dd879b8 1130 }
0493ed11 1131 $m = false;
1132 do {
1133 $m = false;
1134 $m = $m || sq_deent($attvalue, '/\&#0*(\d+);*/s');
1135 $m = $m || sq_deent($attvalue, '/\&#x0*((\d|[a-f])+);*/si', true);
1136 $m = $m || sq_deent($attvalue, '/\\\\(\d+)/s', true);
1137 } while ($m == true);
1138 $attvalue = stripslashes($attvalue);
2dd879b8 1139}
1140
1141/**
8bd0068d 1142 * Kill any tabs, newlines, or carriage returns. Our friends the
1143 * makers of the browser with 95% market value decided that it'd
1144 * be funny to make "java[tab]script" be just as good as "javascript".
1145 *
1146 * @param attvalue The attribute value before extraneous spaces removed.
0493ed11 1147 * @return attvalue Nothing, modifies a reference value.
8bd0068d 1148 */
0493ed11 1149function sq_unspace(&$attvalue){
1150 $me = 'sq_unspace';
1151 if (strcspn($attvalue, "\t\r\n\0 ") != strlen($attvalue)){
1152 $attvalue = str_replace(Array("\t", "\r", "\n", "\0", " "),
1153 Array('', '', '', '', ''), $attvalue);
2dd879b8 1154 }
2dd879b8 1155}
1156
691a2d25 1157/**
8bd0068d 1158 * This function returns the final tag out of the tag name, an array
1159 * of attributes, and the type of the tag. This function is called by
1160 * sq_sanitize internally.
1161 *
1162 * @param $tagname the name of the tag.
1163 * @param $attary the array of attributes and their values
1164 * @param $tagtype The type of the tag (see in comments).
1165 * @return a string with the final tag representation.
1166 */
691a2d25 1167function sq_tagprint($tagname, $attary, $tagtype){
b583c3e8 1168 $me = 'sq_tagprint';
3d8371be 1169
691a2d25 1170 if ($tagtype == 2){
1171 $fulltag = '</' . $tagname . '>';
1172 } else {
1173 $fulltag = '<' . $tagname;
1174 if (is_array($attary) && sizeof($attary)){
1175 $atts = Array();
1176 while (list($attname, $attvalue) = each($attary)){
1177 array_push($atts, "$attname=$attvalue");
1178 }
1179 $fulltag .= ' ' . join(" ", $atts);
1180 }
1181 if ($tagtype == 3){
b583c3e8 1182 $fulltag .= ' /';
691a2d25 1183 }
b583c3e8 1184 $fulltag .= '>';
451f74a2 1185 }
691a2d25 1186 return $fulltag;
451f74a2 1187}
a3daaaf3 1188
691a2d25 1189/**
8bd0068d 1190 * A small helper function to use with array_walk. Modifies a by-ref
1191 * value and makes it lowercase.
1192 *
1193 * @param $val a value passed by-ref.
1194 * @return void since it modifies a by-ref value.
1195 */
691a2d25 1196function sq_casenormalize(&$val){
1197 $val = strtolower($val);
1198}
451f74a2 1199
691a2d25 1200/**
8bd0068d 1201 * This function skips any whitespace from the current position within
1202 * a string and to the next non-whitespace value.
1203 *
1204 * @param $body the string
1205 * @param $offset the offset within the string where we should start
1206 * looking for the next non-whitespace character.
1207 * @return the location within the $body where the next
1208 * non-whitespace char is located.
1209 */
691a2d25 1210function sq_skipspace($body, $offset){
b583c3e8 1211 $me = 'sq_skipspace';
3d8371be 1212 preg_match('/^(\s*)/s', substr($body, $offset), $matches);
691a2d25 1213 if (sizeof($matches{1})){
1214 $count = strlen($matches{1});
1215 $offset += $count;
451f74a2 1216 }
691a2d25 1217 return $offset;
451f74a2 1218}
a3daaaf3 1219
691a2d25 1220/**
8bd0068d 1221 * This function looks for the next character within a string. It's
1222 * really just a glorified "strpos", except it catches if failures
1223 * nicely.
1224 *
1225 * @param $body The string to look for needle in.
1226 * @param $offset Start looking from this position.
1227 * @param $needle The character/string to look for.
1228 * @return location of the next occurance of the needle, or
1229 * strlen($body) if needle wasn't found.
1230 */
691a2d25 1231function sq_findnxstr($body, $offset, $needle){
3d8371be 1232 $me = 'sq_findnxstr';
691a2d25 1233 $pos = strpos($body, $needle, $offset);
1234 if ($pos === FALSE){
1235 $pos = strlen($body);
451f74a2 1236 }
691a2d25 1237 return $pos;
451f74a2 1238}
a3daaaf3 1239
691a2d25 1240/**
8bd0068d 1241 * This function takes a PCRE-style regexp and tries to match it
1242 * within the string.
1243 *
1244 * @param $body The string to look for needle in.
1245 * @param $offset Start looking from here.
1246 * @param $reg A PCRE-style regex to match.
1247 * @return Returns a false if no matches found, or an array
1248 * with the following members:
1249 * - integer with the location of the match within $body
1250 * - string with whatever content between offset and the match
1251 * - string with whatever it is we matched
1252 */
691a2d25 1253function sq_findnxreg($body, $offset, $reg){
b583c3e8 1254 $me = 'sq_findnxreg';
691a2d25 1255 $matches = Array();
1256 $retarr = Array();
7d06541f 1257 preg_match("%^(.*?)($reg)%si", substr($body, $offset), $matches);
1258 if (!isset($matches{0}) || !$matches{0}){
691a2d25 1259 $retarr = false;
1260 } else {
1261 $retarr{0} = $offset + strlen($matches{1});
1262 $retarr{1} = $matches{1};
1263 $retarr{2} = $matches{2};
1264 }
1265 return $retarr;
1266}
a3daaaf3 1267
691a2d25 1268/**
8bd0068d 1269 * This function looks for the next tag.
1270 *
1271 * @param $body String where to look for the next tag.
1272 * @param $offset Start looking from here.
1273 * @return false if no more tags exist in the body, or
1274 * an array with the following members:
1275 * - string with the name of the tag
1276 * - array with attributes and their values
1277 * - integer with tag type (1, 2, or 3)
1278 * - integer where the tag starts (starting "<")
1279 * - integer where the tag ends (ending ">")
1280 * first three members will be false, if the tag is invalid.
1281 */
691a2d25 1282function sq_getnxtag($body, $offset){
b583c3e8 1283 $me = 'sq_getnxtag';
691a2d25 1284 if ($offset > strlen($body)){
1285 return false;
1286 }
1287 $lt = sq_findnxstr($body, $offset, "<");
1288 if ($lt == strlen($body)){
1289 return false;
1290 }
1291 /**
8bd0068d 1292 * We are here:
1293 * blah blah <tag attribute="value">
1294 * \---------^
1295 */
691a2d25 1296 $pos = sq_skipspace($body, $lt+1);
1297 if ($pos >= strlen($body)){
1298 return Array(false, false, false, $lt, strlen($body));
1299 }
1300 /**
8bd0068d 1301 * There are 3 kinds of tags:
1302 * 1. Opening tag, e.g.:
1303 * <a href="blah">
1304 * 2. Closing tag, e.g.:
1305 * </a>
1306 * 3. XHTML-style content-less tag, e.g.:
1307 * <img src="blah" />
1308 */
691a2d25 1309 $tagtype = false;
1310 switch (substr($body, $pos, 1)){
3d8371be 1311 case '/':
1312 $tagtype = 2;
1313 $pos++;
1314 break;
1315 case '!':
1316 /**
8bd0068d 1317 * A comment or an SGML declaration.
1318 */
3d8371be 1319 if (substr($body, $pos+1, 2) == "--"){
1320 $gt = strpos($body, "-->", $pos);
1321 if ($gt === false){
1322 $gt = strlen($body);
1323 } else {
1324 $gt += 2;
1325 }
1326 return Array(false, false, false, $lt, $gt);
bb8d0799 1327 } else {
3d8371be 1328 $gt = sq_findnxstr($body, $pos, ">");
1329 return Array(false, false, false, $lt, $gt);
1330 }
1331 break;
1332 default:
1333 /**
8bd0068d 1334 * Assume tagtype 1 for now. If it's type 3, we'll switch values
1335 * later.
1336 */
3d8371be 1337 $tagtype = 1;
1338 break;
691a2d25 1339 }
a3daaaf3 1340
0493ed11 1341 $tag_start = $pos;
691a2d25 1342 $tagname = '';
1343 /**
8bd0068d 1344 * Look for next [\W-_], which will indicate the end of the tag name.
1345 */
691a2d25 1346 $regary = sq_findnxreg($body, $pos, "[^\w\-_]");
1347 if ($regary == false){
1348 return Array(false, false, false, $lt, strlen($body));
1349 }
1350 list($pos, $tagname, $match) = $regary;
1351 $tagname = strtolower($tagname);
1352
1353 /**
8bd0068d 1354 * $match can be either of these:
1355 * '>' indicating the end of the tag entirely.
1356 * '\s' indicating the end of the tag name.
1357 * '/' indicating that this is type-3 xhtml tag.
1358 *
1359 * Whatever else we find there indicates an invalid tag.
1360 */
691a2d25 1361 switch ($match){
3d8371be 1362 case '/':
691a2d25 1363 /**
8bd0068d 1364 * This is an xhtml-style tag with a closing / at the
1365 * end, like so: <img src="blah" />. Check if it's followed
1366 * by the closing bracket. If not, then this tag is invalid
1367 */
3d8371be 1368 if (substr($body, $pos, 2) == "/>"){
1369 $pos++;
1370 $tagtype = 3;
1371 } else {
1372 $gt = sq_findnxstr($body, $pos, ">");
1373 $retary = Array(false, false, false, $lt, $gt);
1374 return $retary;
1375 }
1376 case '>':
1377 return Array($tagname, false, $tagtype, $lt, $pos);
1378 break;
1379 default:
1380 /**
8bd0068d 1381 * Check if it's whitespace
1382 */
3d8371be 1383 if (!preg_match('/\s/', $match)){
1384 /**
8bd0068d 1385 * This is an invalid tag! Look for the next closing ">".
1386 */
7d06541f 1387 $gt = sq_findnxstr($body, $lt, ">");
3d8371be 1388 return Array(false, false, false, $lt, $gt);
1389 }
1390 break;
691a2d25 1391 }
3d8371be 1392
691a2d25 1393 /**
8bd0068d 1394 * At this point we're here:
1395 * <tagname attribute='blah'>
1396 * \-------^
1397 *
1398 * At this point we loop in order to find all attributes.
1399 */
691a2d25 1400 $attname = '';
0493ed11 1401 $atttype = false;
691a2d25 1402 $attary = Array();
1403
1404 while ($pos <= strlen($body)){
1405 $pos = sq_skipspace($body, $pos);
1406 if ($pos == strlen($body)){
1407 /**
8bd0068d 1408 * Non-closed tag.
1409 */
691a2d25 1410 return Array(false, false, false, $lt, $pos);
1411 }
1412 /**
8bd0068d 1413 * See if we arrived at a ">" or "/>", which means that we reached
1414 * the end of the tag.
1415 */
691a2d25 1416 $matches = Array();
164800ad 1417 if (preg_match("%^(\s*)(>|/>)%s", substr($body, $pos), $matches)) {
c828931c 1418 /**
8bd0068d 1419 * Yep. So we did.
1420 */
c828931c 1421 $pos += strlen($matches{1});
1422 if ($matches{2} == "/>"){
1423 $tagtype = 3;
1424 $pos++;
1425 }
1426 return Array($tagname, $attary, $tagtype, $lt, $pos);
1427 }
a3daaaf3 1428
cca46357 1429 /**
8bd0068d 1430 * There are several types of attributes, with optional
1431 * [:space:] between members.
1432 * Type 1:
1433 * attrname[:space:]=[:space:]'CDATA'
1434 * Type 2:
1435 * attrname[:space:]=[:space:]"CDATA"
1436 * Type 3:
1437 * attr[:space:]=[:space:]CDATA
1438 * Type 4:
1439 * attrname
1440 *
1441 * We leave types 1 and 2 the same, type 3 we check for
1442 * '"' and convert to "&quot" if needed, then wrap in
1443 * double quotes. Type 4 we convert into:
1444 * attrname="yes".
1445 */
3f7c623f 1446 $regary = sq_findnxreg($body, $pos, "[^:\w\-_]");
691a2d25 1447 if ($regary == false){
1448 /**
8bd0068d 1449 * Looks like body ended before the end of tag.
1450 */
691a2d25 1451 return Array(false, false, false, $lt, strlen($body));
cca46357 1452 }
691a2d25 1453 list($pos, $attname, $match) = $regary;
1454 $attname = strtolower($attname);
1455 /**
8bd0068d 1456 * We arrived at the end of attribute name. Several things possible
1457 * here:
1458 * '>' means the end of the tag and this is attribute type 4
1459 * '/' if followed by '>' means the same thing as above
1460 * '\s' means a lot of things -- look what it's followed by.
1461 * anything else means the attribute is invalid.
1462 */
691a2d25 1463 switch($match){
3d8371be 1464 case '/':
691a2d25 1465 /**
8bd0068d 1466 * This is an xhtml-style tag with a closing / at the
1467 * end, like so: <img src="blah" />. Check if it's followed
1468 * by the closing bracket. If not, then this tag is invalid
1469 */
3d8371be 1470 if (substr($body, $pos, 2) == "/>"){
691a2d25 1471 $pos++;
3d8371be 1472 $tagtype = 3;
691a2d25 1473 } else {
3d8371be 1474 $gt = sq_findnxstr($body, $pos, ">");
1475 $retary = Array(false, false, false, $lt, $gt);
1476 return $retary;
1477 }
1478 case '>':
1479 $attary{$attname} = '"yes"';
1480 return Array($tagname, $attary, $tagtype, $lt, $pos);
1481 break;
1482 default:
1483 /**
8bd0068d 1484 * Skip whitespace and see what we arrive at.
1485 */
3d8371be 1486 $pos = sq_skipspace($body, $pos);
1487 $char = substr($body, $pos, 1);
1488 /**
8bd0068d 1489 * Two things are valid here:
1490 * '=' means this is attribute type 1 2 or 3.
1491 * \w means this was attribute type 4.
1492 * anything else we ignore and re-loop. End of tag and
1493 * invalid stuff will be caught by our checks at the beginning
1494 * of the loop.
1495 */
3d8371be 1496 if ($char == "="){
1497 $pos++;
1498 $pos = sq_skipspace($body, $pos);
691a2d25 1499 /**
8bd0068d 1500 * Here are 3 possibilities:
1501 * "'" attribute type 1
1502 * '"' attribute type 2
1503 * everything else is the content of tag type 3
1504 */
3d8371be 1505 $quot = substr($body, $pos, 1);
1506 if ($quot == "'"){
1507 $regary = sq_findnxreg($body, $pos+1, "\'");
1508 if ($regary == false){
1509 return Array(false, false, false, $lt, strlen($body));
1510 }
1511 list($pos, $attval, $match) = $regary;
1512 $pos++;
1513 $attary{$attname} = "'" . $attval . "'";
1514 } else if ($quot == '"'){
1515 $regary = sq_findnxreg($body, $pos+1, '\"');
1516 if ($regary == false){
1517 return Array(false, false, false, $lt, strlen($body));
1518 }
1519 list($pos, $attval, $match) = $regary;
1520 $pos++;
1521 $attary{$attname} = '"' . $attval . '"';
1522 } else {
1523 /**
8bd0068d 1524 * These are hateful. Look for \s, or >.
1525 */
3d8371be 1526 $regary = sq_findnxreg($body, $pos, "[\s>]");
1527 if ($regary == false){
1528 return Array(false, false, false, $lt, strlen($body));
1529 }
1530 list($pos, $attval, $match) = $regary;
1531 /**
8bd0068d 1532 * If it's ">" it will be caught at the top.
1533 */
3d8371be 1534 $attval = preg_replace("/\"/s", "&quot;", $attval);
1535 $attary{$attname} = '"' . $attval . '"';
7e235a1a 1536 }
3d8371be 1537 } else if (preg_match("|[\w/>]|", $char)) {
691a2d25 1538 /**
8bd0068d 1539 * That was attribute type 4.
1540 */
3d8371be 1541 $attary{$attname} = '"yes"';
1542 } else {
1543 /**
8bd0068d 1544 * An illegal character. Find next '>' and return.
1545 */
3d8371be 1546 $gt = sq_findnxstr($body, $pos, ">");
1547 return Array(false, false, false, $lt, $gt);
451f74a2 1548 }
3d8371be 1549 break;
691a2d25 1550 }
1551 }
1552 /**
8bd0068d 1553 * The fact that we got here indicates that the tag end was never
1554 * found. Return invalid tag indication so it gets stripped.
1555 */
691a2d25 1556 return Array(false, false, false, $lt, strlen($body));
1557}
1558
1559/**
0493ed11 1560 * Translates entities into literal values so they can be checked.
8bd0068d 1561 *
0493ed11 1562 * @param $attvalue the by-ref value to check.
1563 * @param $regex the regular expression to check against.
1564 * @param $hex whether the entites are hexadecimal.
1565 * @return True or False depending on whether there were matches.
8bd0068d 1566 */
0493ed11 1567function sq_deent(&$attvalue, $regex, $hex=false){
b583c3e8 1568 $me = 'sq_deent';
0493ed11 1569 $ret_match = false;
1570 preg_match_all($regex, $attvalue, $matches);
1571 if (is_array($matches) && sizeof($matches[0]) > 0){
1572 $repl = Array();
1573 for ($i = 0; $i < sizeof($matches[0]); $i++){
1574 $numval = $matches[1][$i];
1575 if ($hex){
1576 $numval = hexdec($numval);
a3daaaf3 1577 }
0493ed11 1578 $repl{$matches[0][$i]} = chr($numval);
691a2d25 1579 }
0493ed11 1580 $attvalue = strtr($attvalue, $repl);
1581 return true;
1582 } else {
1583 return false;
691a2d25 1584 }
691a2d25 1585}
1586
1587/**
8bd0068d 1588 * This function runs various checks against the attributes.
1589 *
1590 * @param $tagname String with the name of the tag.
1591 * @param $attary Array with all tag attributes.
1592 * @param $rm_attnames See description for sq_sanitize
1593 * @param $bad_attvals See description for sq_sanitize
1594 * @param $add_attr_to_tag See description for sq_sanitize
1595 * @param $message message object
1596 * @param $id message id
1597 * @return Array with modified attributes.
1598 */
da2415c1 1599function sq_fixatts($tagname,
1600 $attary,
691a2d25 1601 $rm_attnames,
1602 $bad_attvals,
1603 $add_attr_to_tag,
1604 $message,
b3af12ef 1605 $id,
3d8371be 1606 $mailbox
691a2d25 1607 ){
b583c3e8 1608 $me = 'sq_fixatts';
691a2d25 1609 while (list($attname, $attvalue) = each($attary)){
1610 /**
8bd0068d 1611 * See if this attribute should be removed.
1612 */
691a2d25 1613 foreach ($rm_attnames as $matchtag=>$matchattrs){
1614 if (preg_match($matchtag, $tagname)){
1615 foreach ($matchattrs as $matchattr){
1616 if (preg_match($matchattr, $attname)){
1617 unset($attary{$attname});
1618 continue;
1619 }
451f74a2 1620 }
451f74a2 1621 }
691a2d25 1622 }
1623 /**
8bd0068d 1624 * Remove any backslashes, entities, and extraneous whitespace.
1625 */
0493ed11 1626 sq_defang($attvalue);
1627 sq_unspace($attvalue);
af861a34 1628
691a2d25 1629 /**
8bd0068d 1630 * Now let's run checks on the attvalues.
1631 * I don't expect anyone to comprehend this. If you do,
1632 * get in touch with me so I can drive to where you live and
1633 * shake your hand personally. :)
1634 */
691a2d25 1635 foreach ($bad_attvals as $matchtag=>$matchattrs){
1636 if (preg_match($matchtag, $tagname)){
1637 foreach ($matchattrs as $matchattr=>$valary){
1638 if (preg_match($matchattr, $attname)){
1639 /**
8bd0068d 1640 * There are two arrays in valary.
1641 * First is matches.
1642 * Second one is replacements
1643 */
691a2d25 1644 list($valmatch, $valrepl) = $valary;
da2415c1 1645 $newvalue =
691a2d25 1646 preg_replace($valmatch, $valrepl, $attvalue);
1647 if ($newvalue != $attvalue){
1648 $attary{$attname} = $newvalue;
1649 }
1650 }
1651 }
451f74a2 1652 }
a3daaaf3 1653 }
834a1027 1654
834a1027 1655 /**
1656 * Replace empty src tags with the blank image. src is only used
1657 * for frames, images, and image inputs. Doing a replace should
1658 * not affect them working as should be, however it will stop
1659 * IE from being kicked off when src for img tags are not set
1660 */
5a6fde9e 1661 if (($attname == 'src') && ($attvalue == '""')) {
834a1027 1662 $attary{$attname} = '"' . SM_PATH . 'images/blank.png"';
1663 }
1664
691a2d25 1665 /**
8bd0068d 1666 * Turn cid: urls into http-friendly ones.
1667 */
691a2d25 1668 if (preg_match("/^[\'\"]\s*cid:/si", $attvalue)){
b3af12ef 1669 $attary{$attname} = sq_cid2http($message, $id, $attvalue, $mailbox);
691a2d25 1670 }
ff940ebc 1671
1672 /**
1673 * "Hack" fix for Outlook using propriatary outbind:// protocol in img tags.
1674 * One day MS might actually make it match something useful, for now, falling
1675 * back to using cid2http, so we can grab the blank.png.
1676 */
1677 if (preg_match("/^[\'\"]\s*outbind:\/\//si", $attvalue)) {
1678 $attary{$attname} = sq_cid2http($message, $id, $attvalue, $mailbox);
1679 }
1680
a3daaaf3 1681 }
691a2d25 1682 /**
8bd0068d 1683 * See if we need to append any attributes to this tag.
1684 */
691a2d25 1685 foreach ($add_attr_to_tag as $matchtag=>$addattary){
1686 if (preg_match($matchtag, $tagname)){
1687 $attary = array_merge($attary, $addattary);
1688 }
1689 }
1690 return $attary;
451f74a2 1691}
a3daaaf3 1692
691a2d25 1693/**
8bd0068d 1694 * This function edits the style definition to make them friendly and
1695 * usable in SquirrelMail.
1696 *
1697 * @param $message the message object
1698 * @param $id the message id
1699 * @param $content a string with whatever is between <style> and </style>
1700 * @param $mailbox the message mailbox
1701 * @return a string with edited content.
1702 */
e60a299a 1703function sq_fixstyle($body, $pos, $message, $id, $mailbox){
691a2d25 1704 global $view_unsafe_images;
b583c3e8 1705 $me = 'sq_fixstyle';
7d06541f 1706 $ret = sq_findnxreg($body, $pos, '</\s*style\s*>');
1707 if ($ret == FALSE){
1708 return array(FALSE, strlen($body));
1709 }
1710 $newpos = $ret[0] + strlen($ret[2]);
1711 $content = $ret[1];
691a2d25 1712 /**
0493ed11 1713 * First look for general BODY style declaration, which would be
1714 * like so:
1715 * body {background: blah-blah}
1716 * and change it to .bodyclass so we can just assign it to a <div>
1717 */
691a2d25 1718 $content = preg_replace("|body(\s*\{.*?\})|si", ".bodyclass\\1", $content);
3d8371be 1719 $secremoveimg = '../images/' . _("sec_remove_eng.png");
691a2d25 1720 /**
0493ed11 1721 * Fix url('blah') declarations.
1722 */
1723 // $content = preg_replace("|url\s*\(\s*([\'\"])\s*\S+script\s*:.*?([\'\"])\s*\)|si",
1724 // "url(\\1$secremoveimg\\2)", $content);
1725 // remove NUL
1726 $content = str_replace("\0", "", $content);
5b4884be 1727 // translate ur\l and variations (IE parses that)
1728 $content = preg_replace("/(\\\\)?u(\\\\)?r(\\\\)?l(\\\\)?/i", 'url', $content);
0493ed11 1729 // NB I insert NUL characters to keep to avoid an infinite loop. They are removed after the loop.
1730 while (preg_match("/url\s*\(\s*[\'\"]?([^:]+):(.*)?[\'\"]?\s*\)/si", $content, $matches)) {
1731 $sProto = strtolower($matches[1]);
1732 switch ($sProto) {
0493ed11 1733 /**
758a7889 1734 * Fix url('https*://.*) declarations but only if $view_unsafe_images
1735 * is false.
0493ed11 1736 */
758a7889 1737 case 'https':
1738 case 'http':
1739 if (!$view_unsafe_images){
1740
1741 $sExpr = "/url\s*\(\s*[\'\"]?\s*$sProto*:.*[\'\"]?\s*\)/si";
1742 $content = preg_replace($sExpr, "u\0r\0l(\\1$secremoveimg\\2)", $content);
1743
1744 } else {
1745 $content = preg_replace('/url/i',"u\0r\0l",$content);
1746 }
1747 break;
1748 /**
1749 * Fix urls that refer to cid:
1750 */
1751 case 'cid':
1752 $cidurl = 'cid:'. $matches[2];
1753 $httpurl = sq_cid2http($message, $id, $cidurl, $mailbox);
1754 // escape parentheses that can modify the regular expression
1755 $cidurl = str_replace(array('(',')'),array('\\(','\\)'),$cidurl);
1756 $content = preg_replace("|url\s*\(\s*$cidurl\s*\)|si",
1757 "u\0r\0l($httpurl)", $content);
1758 break;
1759 default:
1760 /**
1761 * replace url with protocol other then the white list
1762 * http,https and cid by an empty string.
1763 */
1764 $content = preg_replace("/url\s*\(\s*[\'\"]?([^:]+):(.*)?[\'\"]?\s*\)/si",
1765 "", $content);
1766 break;
0493ed11 1767 }
691a2d25 1768 }
0493ed11 1769 // remove NUL
1770 $content = str_replace("\0", "", $content);
0493ed11 1771 /**
1772 * Remove any backslashes, entities, and extraneous whitespace.
1773 */
1774 $contentTemp = $content;
1775 sq_defang($contentTemp);
1776 sq_unspace($contentTemp);
a3daaaf3 1777
691a2d25 1778 /**
8bd0068d 1779 * Fix stupid css declarations which lead to vulnerabilities
1780 * in IE.
1781 */
5db90261 1782 $match = Array('/\/\*.*\*\//',
1783 '/expression/i',
0493ed11 1784 '/behaviou*r/i',
1785 '/binding/i',
1786 '/include-source/i');
5db90261 1787 $replace = Array('','idiocy', 'idiocy', 'idiocy', 'idiocy');
0493ed11 1788 $contentNew = preg_replace($match, $replace, $contentTemp);
1789 if ($contentNew !== $contentTemp) {
1790 // insecure css declarations are used. From now on we don't care
1791 // anymore if the css is destroyed by sq_deent, sq_unspace or sq_unbackslash
1792 $content = $contentNew;
1793 }
7d06541f 1794 return array($content, $newpos);
691a2d25 1795}
a3daaaf3 1796
0493ed11 1797
691a2d25 1798/**
8bd0068d 1799 * This function converts cid: url's into the ones that can be viewed in
1800 * the browser.
1801 *
1802 * @param $message the message object
1803 * @param $id the message id
1804 * @param $cidurl the cid: url.
1805 * @param $mailbox the message mailbox
1806 * @return a string with a http-friendly url
1807 */
b3af12ef 1808function sq_cid2http($message, $id, $cidurl, $mailbox){
691a2d25 1809 /**
8bd0068d 1810 * Get rid of quotes.
1811 */
691a2d25 1812 $quotchar = substr($cidurl, 0, 1);
2dd879b8 1813 if ($quotchar == '"' || $quotchar == "'"){
1814 $cidurl = str_replace($quotchar, "", $cidurl);
1815 } else {
1816 $quotchar = '';
1817 }
691a2d25 1818 $cidurl = substr(trim($cidurl), 4);
0493ed11 1819
1820 $match_str = '/\{.*?\}\//';
1821 $str_rep = '';
1822 $cidurl = preg_replace($match_str, $str_rep, $cidurl);
1823
e5e9381a 1824 $linkurl = find_ent_id($cidurl, $message);
1825 /* in case of non-save cid links $httpurl should be replaced by a sort of
8bd0068d 1826 unsave link image */
e5e9381a 1827 $httpurl = '';
c8f5f606 1828
8bd0068d 1829 /**
1830 * This is part of a fix for Outlook Express 6.x generating
1831 * cid URLs without creating content-id headers. These images are
1832 * not part of the multipart/related html mail. The html contains
1833 * <img src="cid:{some_id}/image_filename.ext"> references to
1834 * attached images with as goal to render them inline although
1835 * the attachment disposition property is not inline.
1836 */
c8f5f606 1837
1838 if (empty($linkurl)) {
1839 if (preg_match('/{.*}\//', $cidurl)) {
1840 $cidurl = preg_replace('/{.*}\//','', $cidurl);
1841 if (!empty($cidurl)) {
1842 $linkurl = find_ent_id($cidurl, $message);
1843 }
1844 }
1845 }
f8a1ed5a 1846
c8f5f606 1847 if (!empty($linkurl)) {
6b04287c 1848 $httpurl = $quotchar . SM_PATH . 'src/download.php?absolute_dl=true&amp;' .
8bd0068d 1849 "passed_id=$id&amp;mailbox=" . urlencode($mailbox) .
1850 '&amp;ent_id=' . $linkurl . $quotchar;
c8f5f606 1851 } else {
1852 /**
1853 * If we couldn't generate a proper img url, drop in a blank image
1854 * instead of sending back empty, otherwise it causes unusual behaviour
1855 */
bc017c1d 1856 $httpurl = $quotchar . SM_PATH . 'images/blank.png' . $quotchar;
e5e9381a 1857 }
f8a1ed5a 1858
691a2d25 1859 return $httpurl;
1860}
1861
1862/**
8bd0068d 1863 * This function changes the <body> tag into a <div> tag since we
1864 * can't really have a body-within-body.
1865 *
1866 * @param $attary an array of attributes and values of <body>
1867 * @param $mailbox mailbox we're currently reading (for cid2http)
1868 * @param $message current message (for cid2http)
1869 * @param $id current message id (for cid2http)
1870 * @return a modified array of attributes to be set for <div>
1871 */
2dd879b8 1872function sq_body2div($attary, $mailbox, $message, $id){
b583c3e8 1873 $me = 'sq_body2div';
3d8371be 1874 $divattary = Array('class' => "'bodyclass'");
b583c3e8 1875 $text = '#000000';
c189a963 1876 $has_bgc_stl = $has_txt_stl = false;
b583c3e8 1877 $styledef = '';
691a2d25 1878 if (is_array($attary) && sizeof($attary) > 0){
1879 foreach ($attary as $attname=>$attvalue){
1880 $quotchar = substr($attvalue, 0, 1);
1881 $attvalue = str_replace($quotchar, "", $attvalue);
1882 switch ($attname){
3d8371be 1883 case 'background':
8bd0068d 1884 $attvalue = sq_cid2http($message, $id, $attvalue, $mailbox);
3d8371be 1885 $styledef .= "background-image: url('$attvalue'); ";
1886 break;
1887 case 'bgcolor':
c189a963 1888 $has_bgc_stl = true;
3d8371be 1889 $styledef .= "background-color: $attvalue; ";
1890 break;
1891 case 'text':
c189a963 1892 $has_txt_stl = true;
3d8371be 1893 $styledef .= "color: $attvalue; ";
1894 break;
691a2d25 1895 }
a3daaaf3 1896 }
c189a963 1897 // Outlook defines a white bgcolor and no text color. This can lead to
1898 // white text on a white bg with certain themes.
1899 if ($has_bgc_stl && !$has_txt_stl) {
1900 $styledef .= "color: $text; ";
1901 }
691a2d25 1902 if (strlen($styledef) > 0){
1903 $divattary{"style"} = "\"$styledef\"";
1904 }
1905 }
1906 return $divattary;
1907}
a3daaaf3 1908
691a2d25 1909/**
8bd0068d 1910 * This is the main function and the one you should actually be calling.
1911 * There are several variables you should be aware of an which need
1912 * special description.
1913 *
1914 * Since the description is quite lengthy, see it here:
1915 * http://linux.duke.edu/projects/mini/htmlfilter/
1916 *
1917 * @param $body the string with HTML you wish to filter
1918 * @param $tag_list see description above
1919 * @param $rm_tags_with_content see description above
1920 * @param $self_closing_tags see description above
1921 * @param $force_tag_closing see description above
1922 * @param $rm_attnames see description above
1923 * @param $bad_attvals see description above
1924 * @param $add_attr_to_tag see description above
1925 * @param $message message object
1926 * @param $id message id
1927 * @return sanitized html safe to show on your pages.
1928 */
da2415c1 1929function sq_sanitize($body,
8bd0068d 1930 $tag_list,
1931 $rm_tags_with_content,
1932 $self_closing_tags,
1933 $force_tag_closing,
1934 $rm_attnames,
1935 $bad_attvals,
1936 $add_attr_to_tag,
1937 $message,
1938 $id,
1939 $mailbox
1940 ){
b583c3e8 1941 $me = 'sq_sanitize';
7d06541f 1942 $rm_tags = array_shift($tag_list);
691a2d25 1943 /**
8bd0068d 1944 * Normalize rm_tags and rm_tags_with_content.
1945 */
7d06541f 1946 @array_walk($tag_list, 'sq_casenormalize');
691a2d25 1947 @array_walk($rm_tags_with_content, 'sq_casenormalize');
1948 @array_walk($self_closing_tags, 'sq_casenormalize');
1949 /**
8bd0068d 1950 * See if tag_list is of tags to remove or tags to allow.
1951 * false means remove these tags
1952 * true means allow these tags
1953 */
691a2d25 1954 $curpos = 0;
1955 $open_tags = Array();
2dd879b8 1956 $trusted = "\n<!-- begin sanitized html -->\n";
691a2d25 1957 $skip_content = false;
bb8d0799 1958 /**
8bd0068d 1959 * Take care of netscape's stupid javascript entities like
1960 * &{alert('boo')};
1961 */
bb8d0799 1962 $body = preg_replace("/&(\{.*?\};)/si", "&amp;\\1", $body);
691a2d25 1963
7d06541f 1964 while (($curtag = sq_getnxtag($body, $curpos)) != FALSE){
691a2d25 1965 list($tagname, $attary, $tagtype, $lt, $gt) = $curtag;
1966 $free_content = substr($body, $curpos, $lt-$curpos);
1967 /**
8bd0068d 1968 * Take care of <style>
1969 */
7d06541f 1970 if ($tagname == "style" && $tagtype == 1){
da2415c1 1971 list($free_content, $curpos) =
e60a299a 1972 sq_fixstyle($body, $gt+1, $message, $id, $mailbox);
7d06541f 1973 if ($free_content != FALSE){
1974 $trusted .= sq_tagprint($tagname, $attary, $tagtype);
1975 $trusted .= $free_content;
1976 $trusted .= sq_tagprint($tagname, false, 2);
1977 }
1978 continue;
691a2d25 1979 }
1980 if ($skip_content == false){
1981 $trusted .= $free_content;
691a2d25 1982 }
1983 if ($tagname != FALSE){
1984 if ($tagtype == 2){
1985 if ($skip_content == $tagname){
1986 /**
8bd0068d 1987 * Got to the end of tag we needed to remove.
1988 */
691a2d25 1989 $tagname = false;
1990 $skip_content = false;
1991 } else {
1992 if ($skip_content == false){
c828931c 1993 if ($tagname == "body"){
1994 $tagname = "div";
2dd879b8 1995 }
da2415c1 1996 if (isset($open_tags{$tagname}) &&
8bd0068d 1997 $open_tags{$tagname} > 0){
2dd879b8 1998 $open_tags{$tagname}--;
691a2d25 1999 } else {
2dd879b8 2000 $tagname = false;
691a2d25 2001 }
691a2d25 2002 }
2003 }
2004 } else {
2005 /**
8bd0068d 2006 * $rm_tags_with_content
2007 */
691a2d25 2008 if ($skip_content == false){
2009 /**
8bd0068d 2010 * See if this is a self-closing type and change
2011 * tagtype appropriately.
2012 */
691a2d25 2013 if ($tagtype == 1
8bd0068d 2014 && in_array($tagname, $self_closing_tags)){
2dd879b8 2015 $tagtype = 3;
691a2d25 2016 }
2017 /**
8bd0068d 2018 * See if we should skip this tag and any content
2019 * inside it.
2020 */
691a2d25 2021 if ($tagtype == 1 &&
8bd0068d 2022 in_array($tagname, $rm_tags_with_content)){
691a2d25 2023 $skip_content = $tagname;
2024 } else {
da2415c1 2025 if (($rm_tags == false
8bd0068d 2026 && in_array($tagname, $tag_list)) ||
2027 ($rm_tags == true &&
2028 !in_array($tagname, $tag_list))){
691a2d25 2029 $tagname = false;
2030 } else {
2dd879b8 2031 /**
8bd0068d 2032 * Convert body into div.
2033 */
2dd879b8 2034 if ($tagname == "body"){
2035 $tagname = "div";
da2415c1 2036 $attary = sq_body2div($attary, $mailbox,
8bd0068d 2037 $message, $id);
2dd879b8 2038 }
691a2d25 2039 if ($tagtype == 1){
2040 if (isset($open_tags{$tagname})){
2041 $open_tags{$tagname}++;
2042 } else {
2043 $open_tags{$tagname}=1;
2044 }
2045 }
2046 /**
8bd0068d 2047 * This is where we run other checks.
2048 */
691a2d25 2049 if (is_array($attary) && sizeof($attary) > 0){
2050 $attary = sq_fixatts($tagname,
8bd0068d 2051 $attary,
2052 $rm_attnames,
2053 $bad_attvals,
2054 $add_attr_to_tag,
2055 $message,
2056 $id,
2057 $mailbox
2058 );
691a2d25 2059 }
2060 }
2061 }
691a2d25 2062 }
2063 }
2064 if ($tagname != false && $skip_content == false){
2065 $trusted .= sq_tagprint($tagname, $attary, $tagtype);
2066 }
691a2d25 2067 }
2068 $curpos = $gt+1;
a3daaaf3 2069 }
691a2d25 2070 $trusted .= substr($body, $curpos, strlen($body)-$curpos);
2071 if ($force_tag_closing == true){
2072 foreach ($open_tags as $tagname=>$opentimes){
2073 while ($opentimes > 0){
2074 $trusted .= '</' . $tagname . '>';
2075 $opentimes--;
2076 }
2077 }
2078 $trusted .= "\n";
2079 }
2080 $trusted .= "<!-- end sanitized html -->\n";
2081 return $trusted;
2082}
451f74a2 2083
691a2d25 2084/**
8bd0068d 2085 * This is a wrapper function to call html sanitizing routines.
2086 *
2087 * @param $body the body of the message
2088 * @param $id the id of the message
c189a963 2089
2090 * @param $message
2091 * @param $mailbox
2092 * @param boolean $take_mailto_links When TRUE, converts mailto: links
2093 * into internal SM compose links
2094 * (optional; default = TRUE)
8bd0068d 2095 * @return a string with html safe to display in the browser.
2096 */
c189a963 2097function magicHTML($body, $id, $message, $mailbox = 'INBOX', $take_mailto_links =true) {
2098
202bcbcc 2099 // require_once(SM_PATH . 'functions/url_parser.php'); // for $MailTo_PReg_Match
c189a963 2100
691a2d25 2101 global $attachment_common_show_images, $view_unsafe_images,
8bd0068d 2102 $has_unsafe_images;
691a2d25 2103 /**
8bd0068d 2104 * Don't display attached images in HTML mode.
d0187bd6 2105 *
2106 * SB: why?
8bd0068d 2107 */
691a2d25 2108 $attachment_common_show_images = false;
2109 $tag_list = Array(
8bd0068d 2110 false,
2111 "object",
2112 "meta",
2113 "html",
2114 "head",
2115 "base",
2116 "link",
2117 "frame",
2118 "iframe",
2119 "plaintext",
2120 "marquee"
2121 );
691a2d25 2122
2123 $rm_tags_with_content = Array(
8bd0068d 2124 "script",
2125 "applet",
2126 "embed",
2127 "title",
2128 "frameset",
0493ed11 2129 "xmp",
8bd0068d 2130 "xml"
2131 );
691a2d25 2132
2133 $self_closing_tags = Array(
8bd0068d 2134 "img",
2135 "br",
2136 "hr",
2137 "input",
2138 "outbind"
2139 );
691a2d25 2140
2dd879b8 2141 $force_tag_closing = true;
691a2d25 2142
2143 $rm_attnames = Array(
8bd0068d 2144 "/.*/" =>
2145 Array(
2146 "/target/i",
2147 "/^on.*/i",
2148 "/^dynsrc/i",
2149 "/^data.*/i",
2150 "/^lowsrc.*/i"
2151 )
2152 );
691a2d25 2153
2154 $secremoveimg = "../images/" . _("sec_remove_eng.png");
2155 $bad_attvals = Array(
8bd0068d 2156 "/.*/" =>
691a2d25 2157 Array(
0a6ec9b5 2158 "/^src|background/i" =>
8bd0068d 2159 Array(
691a2d25 2160 Array(
8bd0068d 2161 "/^([\'\"])\s*\S+script\s*:.*([\'\"])/si",
2162 "/^([\'\"])\s*mocha\s*:*.*([\'\"])/si",
2163 "/^([\'\"])\s*about\s*:.*([\'\"])/si"
691a2d25 2164 ),
8bd0068d 2165 Array(
2166 "\\1$secremoveimg\\2",
2167 "\\1$secremoveimg\\2",
2168 "\\1$secremoveimg\\2",
8bd0068d 2169 )
2170 ),
0a6ec9b5 2171 "/^href|action/i" =>
8bd0068d 2172 Array(
0a6ec9b5 2173 Array(
8bd0068d 2174 "/^([\'\"])\s*\S+script\s*:.*([\'\"])/si",
2175 "/^([\'\"])\s*mocha\s*:*.*([\'\"])/si",
2176 "/^([\'\"])\s*about\s*:.*([\'\"])/si"
0a6ec9b5 2177 ),
691a2d25 2178 Array(
8bd0068d 2179 "\\1#\\1",
2180 "\\1#\\1",
2181 "\\1#\\1"
02474e43 2182 )
8bd0068d 2183 ),
2184 "/^style/i" =>
2185 Array(
2186 Array(
5db90261 2187 "/\/\*.*\*\//",
8bd0068d 2188 "/expression/i",
2189 "/binding/i",
2190 "/behaviou*r/i",
2191 "/include-source/i",
2192 "/position\s*:\s*absolute/i",
1d935bc2 2193 "/(\\\\)?u(\\\\)?r(\\\\)?l(\\\\)?/i",
8bd0068d 2194 "/url\s*\(\s*([\'\"])\s*\S+script\s*:.*([\'\"])\s*\)/si",
2195 "/url\s*\(\s*([\'\"])\s*mocha\s*:.*([\'\"])\s*\)/si",
2196 "/url\s*\(\s*([\'\"])\s*about\s*:.*([\'\"])\s*\)/si",
2197 "/(.*)\s*:\s*url\s*\(\s*([\'\"]*)\s*\S+script\s*:.*([\'\"]*)\s*\)/si"
2198 ),
2199 Array(
5db90261 2200 "",
8bd0068d 2201 "idiocy",
2202 "idiocy",
2203 "idiocy",
2204 "idiocy",
2205 "",
5b4884be 2206 "url",
8bd0068d 2207 "url(\\1#\\1)",
2208 "url(\\1#\\1)",
2209 "url(\\1#\\1)",
8bd0068d 2210 "\\1:url(\\2#\\3)"
2211 )
691a2d25 2212 )
8bd0068d 2213 )
691a2d25 2214 );
5262d9a6 2215 if( !sqgetGlobalVar('view_unsafe_images', $view_unsafe_images, SQ_GET) ) {
2dd879b8 2216 $view_unsafe_images = false;
45071bd6 2217 }
691a2d25 2218 if (!$view_unsafe_images){
2219 /**
8bd0068d 2220 * Remove any references to http/https if view_unsafe_images set
2221 * to false.
2222 */
02474e43 2223 array_push($bad_attvals{'/.*/'}{'/^src|background/i'}[0],
8bd0068d 2224 '/^([\'\"])\s*https*:.*([\'\"])/si');
02474e43 2225 array_push($bad_attvals{'/.*/'}{'/^src|background/i'}[1],
8bd0068d 2226 "\\1$secremoveimg\\1");
02474e43 2227 array_push($bad_attvals{'/.*/'}{'/^style/i'}[0],
7ef0b415 2228 '/url\([\'\"]?https?:[^\)]*[\'\"]?\)/si');
02474e43 2229 array_push($bad_attvals{'/.*/'}{'/^style/i'}[1],
8bd0068d 2230 "url(\\1$secremoveimg\\1)");
691a2d25 2231 }
451f74a2 2232
691a2d25 2233 $add_attr_to_tag = Array(
8bd0068d 2234 "/^a$/i" =>
c25f2fbb 2235 Array('target'=>'"_blank"',
02474e43 2236 'title'=>'"'._("This external link will open in a new window").'"'
8bd0068d 2237 )
2238 );
da2415c1 2239 $trusted = sq_sanitize($body,
8bd0068d 2240 $tag_list,
2241 $rm_tags_with_content,
2242 $self_closing_tags,
2243 $force_tag_closing,
2244 $rm_attnames,
2245 $bad_attvals,
2246 $add_attr_to_tag,
2247 $message,
2248 $id,
2249 $mailbox
2250 );
f83c60a2 2251 if (preg_match("|$secremoveimg|i", $trusted)){
691a2d25 2252 $has_unsafe_images = true;
da2415c1 2253 }
c189a963 2254
2255 // we want to parse mailto's in HTML output, change to SM compose links
2256 // this is a modified version of code from url_parser.php... but Marc is
2257 // right: we need a better filtering implementation; adding this randomly
2258 // here is not a great solution
2259 //
2260 if ($take_mailto_links) {
2261 // parseUrl($trusted); // this even parses URLs inside of tags... too aggressive
2262 global $MailTo_PReg_Match;
202bcbcc 2263 $MailTo_PReg_Match = '/mailto:' . substr($MailTo_PReg_Match, 1) ;
c189a963 2264 if ((preg_match_all($MailTo_PReg_Match, $trusted, $regs)) && ($regs[0][0] != '')) {
2265 foreach ($regs[0] as $i => $mailto_before) {
2266 $mailto_params = $regs[10][$i];
2267 // get rid of any tailing quote since we have to add send_to to the end
2268 //
2269 if (substr($mailto_before, strlen($mailto_before) - 1) == '"')
2270 $mailto_before = substr($mailto_before, 0, strlen($mailto_before) - 1);
2271 if (substr($mailto_params, strlen($mailto_params) - 1) == '"')
2272 $mailto_params = substr($mailto_params, 0, strlen($mailto_params) - 1);
2273
2274 if ($regs[1][$i]) { //if there is an email addr before '?', we need to merge it with the params
2275 $to = 'to=' . $regs[1][$i];
2276 if (strpos($mailto_params, 'to=') > -1) //already a 'to='
2277 $mailto_params = str_replace('to=', $to . '%2C%20', $mailto_params);
2278 else {
2279 if ($mailto_params) //already some params, append to them
2280 $mailto_params .= '&amp;' . $to;
2281 else
2282 $mailto_params .= '?' . $to;
2283 }
2284 }
2285
2286 $url_str = preg_replace(array('/to=/i', '/(?<!b)cc=/i', '/bcc=/i'), array('send_to=', 'send_to_cc=', 'send_to_bcc='), $mailto_params);
2287
2288 // we'll already have target=_blank, no need to allow comp_in_new
2289 // here (which would be a lot more work anyway)
2290 //
2291 global $compose_new_win;
2292 $temp_comp_in_new = $compose_new_win;
2293 $compose_new_win = 0;
2294 $comp_uri = makeComposeLink('src/compose.php' . $url_str, $mailto_before);
2295 $compose_new_win = $temp_comp_in_new;
2296
2297 // remove <a href=" and anything after the next quote (we only
2298 // need the uri, not the link HTML) in compose uri
2299 //
2300 $comp_uri = substr($comp_uri, 9);
2301 $comp_uri = substr($comp_uri, 0, strpos($comp_uri, '"', 1));
2302 $trusted = str_replace($mailto_before, $comp_uri, $trusted);
2303 }
2304 }
2305 }
2306
691a2d25 2307 return $trusted;
451f74a2 2308}
a4a70693 2309
da2415c1 2310/**
8bd0068d 2311 * function SendDownloadHeaders - send file to the browser
2312 *
2313 * Original Source: SM core src/download.php
2314 * moved here to make it available to other code, and separate
2315 * front end from back end functionality.
2316 *
2317 * @param string $type0 first half of mime type
2318 * @param string $type1 second half of mime type
2319 * @param string $filename filename to tell the browser for downloaded file
2320 * @param boolean $force whether to force the download dialog to pop
2321 * @param optional integer $filesize send the Content-Header and length to the browser
2322 * @return void
2323 */
02474e43 2324function SendDownloadHeaders($type0, $type1, $filename, $force, $filesize=0) {
2325 global $languages, $squirrelmail_language;
cfffd60b 2326 $isIE = $isIE6plus = false;
02474e43 2327
2328 sqgetGlobalVar('HTTP_USER_AGENT', $HTTP_USER_AGENT, SQ_SERVER);
2329
2330 if (strstr($HTTP_USER_AGENT, 'compatible; MSIE ') !== false &&
8bd0068d 2331 strstr($HTTP_USER_AGENT, 'Opera') === false) {
cfffd60b 2332 $isIE = true;
02474e43 2333 }
2334
cfffd60b 2335 if (preg_match('/compatible; MSIE ([0-9]+)/', $HTTP_USER_AGENT, $match) &&
2336 ((int)$match[1]) >= 6 && strstr($HTTP_USER_AGENT, 'Opera') === false) {
2337 $isIE6plus = true;
02474e43 2338 }
2339
2340 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
8bd0068d 2341 function_exists($languages[$squirrelmail_language]['XTRA_CODE'] . '_downloadfilename')) {
02474e43 2342 $filename =
8bd0068d 2343 call_user_func($languages[$squirrelmail_language]['XTRA_CODE'] . '_downloadfilename', $filename, $HTTP_USER_AGENT);
02474e43 2344 } else {
2345 $filename = ereg_replace('[\\/:\*\?"<>\|;]', '_', str_replace('&nbsp;', ' ', $filename));
2346 }
2347
2348 // A Pox on Microsoft and it's Internet Explorer!
2349 //
2350 // IE has lots of bugs with file downloads.
2351 // It also has problems with SSL. Both of these cause problems
2352 // for us in this function.
2353 //
2354 // See this article on Cache Control headers and SSL
2355 // http://support.microsoft.com/default.aspx?scid=kb;en-us;323308
2356 //
2357 // The best thing you can do for IE is to upgrade to the latest
2358 // version
2359 //set all the Cache Control Headers for IE
2360 if ($isIE) {
2361 $filename=rawurlencode($filename);
2362 header ("Pragma: public");
8bd0068d 2363 header ("Cache-Control: no-store, max-age=0, no-cache, must-revalidate"); // HTTP/1.1
02474e43 2364 header ("Cache-Control: post-check=0, pre-check=0", false);
8bd0068d 2365 header ("Cache-Control: private");
02474e43 2366
2367 //set the inline header for IE, we'll add the attachment header later if we need it
2368 header ("Content-Disposition: inline; filename=$filename");
2369 }
2370
2371 if (!$force) {
2372 // Try to show in browser window
2373 header ("Content-Disposition: inline; filename=\"$filename\"");
2374 header ("Content-Type: $type0/$type1; name=\"$filename\"");
2375 } else {
2376 // Try to pop up the "save as" box
2377
2378 // IE makes this hard. It pops up 2 save boxes, or none.
2379 // http://support.microsoft.com/support/kb/articles/Q238/5/88.ASP
2380 // http://support.microsoft.com/default.aspx?scid=kb;EN-US;260519
2381 // But, according to Microsoft, it is "RFC compliant but doesn't
2382 // take into account some deviations that allowed within the
2383 // specification." Doesn't that mean RFC non-compliant?
2384 // http://support.microsoft.com/support/kb/articles/Q258/4/52.ASP
2385
2386 // all browsers need the application/octet-stream header for this
2387 header ("Content-Type: application/octet-stream; name=\"$filename\"");
2388
2389 // http://support.microsoft.com/support/kb/articles/Q182/3/15.asp
2390 // Do not have quotes around filename, but that applied to
2391 // "attachment"... does it apply to inline too?
2392 header ("Content-Disposition: attachment; filename=\"$filename\"");
2393
cfffd60b 2394 if ($isIE && !$isIE6plus) {
02474e43 2395 // This combination seems to work mostly. IE 5.5 SP 1 has
2396 // known issues (see the Microsoft Knowledge Base)
2397
2398 // This works for most types, but doesn't work with Word files
2399 header ("Content-Type: application/download; name=\"$filename\"");
2400
2401 // These are spares, just in case. :-)
2402 //header("Content-Type: $type0/$type1; name=\"$filename\"");
2403 //header("Content-Type: application/x-msdownload; name=\"$filename\"");
2404 //header("Content-Type: application/octet-stream; name=\"$filename\"");
2405 } else {
2406 // another application/octet-stream forces download for Netscape
2407 header ("Content-Type: application/octet-stream; name=\"$filename\"");
2408 }
2409 }
2410
2411 //send the content-length header if the calling function provides it
2412 if ($filesize > 0) {
2413 header("Content-Length: $filesize");
2414 }
07c49f57 2415
8d863f64 2416} // end fn SendDownloadHeaders