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