Flushes the message header.
[squirrelmail.git] / functions / mime.php
CommitLineData
59177427 1<?php
aceb0d5c 2 /** mime.php
3 **
d068c0ec 4 ** This contains the functions necessary to detect and decode MIME
5 ** messages.
6 **
245a6892 7 ** $Id$
aceb0d5c 8 **/
b74ba498 9
f435778e 10 if (defined('mime_php'))
11 return;
12 define('mime_php', true);
aceb0d5c 13
0fc2aca0 14 require_once('../functions/imap.php');
8beafbbc 15
cbcf32f6 16 /** Setting up the objects that have the structure for the message **/
8beafbbc 17
18 class msg_header {
19 /** msg_header contains generic variables for values that **/
20 /** could be in a header. **/
b74ba498 21
245a6892 22 var $type0 = '', $type1 = '', $boundary = '', $charset = '';
40023540 23 var $encoding = '', $size = 0, $to = array(), $from = '', $date = '';
24 var $cc = array(), $bcc = array(), $reply_to = '', $subject = '';
61423189 25 var $id = 0, $mailbox = '', $description = '', $filename = '';
66e1a00e 26 var $entity_id = 0, $message_id = 0, $name = '';
8beafbbc 27 }
b74ba498 28
8beafbbc 29 class message {
30 /** message is the object that contains messages. It is a recursive
b74ba498 31 object in that through the $entities variable, it can contain
8beafbbc 32 more objects of type message. See documentation in mime.txt for
33 a better description of how this works.
b74ba498 34 **/
61423189 35 var $header = '';
2df6ca53 36 var $entities = array();
b74ba498 37
8beafbbc 38 function addEntity ($msg) {
61423189 39 $this->entities[] = $msg;
8beafbbc 40 }
41 }
1fd97780 42
8beafbbc 43 /* --------------------------------------------------------------------------------- */
44 /* MIME DECODING */
45 /* --------------------------------------------------------------------------------- */
b74ba498 46
cbcf32f6 47 // This function gets the structure of a message and stores it in the "message" class.
48 // It will return this object for use with all relevant header information and
49 // fully parsed into the standard "message" object format.
8beafbbc 50 function mime_structure ($imap_stream, $header) {
b74ba498 51
52 sqimap_messages_flag ($imap_stream, $header->id, $header->id, 'Seen');
53 $ssid = sqimap_session_id();
54 $lsid = strlen( $ssid );
8beafbbc 55 $id = $header->id;
b74ba498 56 fputs ($imap_stream, "$ssid FETCH $id BODYSTRUCTURE\r\n");
245a6892 57 //
58 // This should use sqimap_read_data instead of reading it itself
59 //
e79bed1b 60 $read = fgets ($imap_stream, 10000);
b74ba498 61 $bodystructure = '';
62 while( substr($read, 0, $lsid) <> $ssid &&
63 !feof( $imap_stream ) ) {
3e1266ef 64 $bodystructure .= $read;
254925d1 65 $read = fgets ($imap_stream, 10000);
254925d1 66 }
22ef7536 67 $read = $bodystructure;
8beafbbc 68
8beafbbc 69 // isolate the body structure and remove beginning and end parenthesis
b74ba498 70 $read = trim(substr ($read, strpos(strtolower($read), 'bodystructure') + 13));
ea48eb25 71 $read = trim(substr ($read, 0, -1));
72 $end = mime_match_parenthesis(0, $read);
73 while ($end == strlen($read)-1) {
74 $read = trim(substr ($read, 0, -1));
75 $read = trim(substr ($read, 1));
76 $end = mime_match_parenthesis(0, $read);
77 }
8beafbbc 78
85daa3ad 79 $msg = mime_parse_structure ($read, 0);
8beafbbc 80 $msg->header = $header;
81 return $msg;
82 }
83
cbcf32f6 84 // this starts the parsing of a particular structure. It is called recursively,
85 // so it can be passed different structures. It returns an object of type
86 // $message.
87 // First, it checks to see if it is a multipart message. If it is, then it
88 // handles that as it sees is necessary. If it is just a regular entity,
89 // then it parses it and adds the necessary header information (by calling out
90 // to mime_get_elements()
8beafbbc 91 function mime_parse_structure ($structure, $ent_id) {
b74ba498 92
8beafbbc 93 $msg = new message();
b74ba498 94 if ($structure{0} == '(') {
8beafbbc 95 $ent_id = mime_new_element_level($ent_id);
96 $start = $end = -1;
97 do {
8beafbbc 98 $start = $end+1;
99 $end = mime_match_parenthesis ($start, $structure);
b74ba498 100
8beafbbc 101 $element = substr($structure, $start+1, ($end - $start)-1);
ea48eb25 102 $ent_id = mime_increment_id ($ent_id);
8beafbbc 103 $newmsg = mime_parse_structure ($element, $ent_id);
104 $msg->addEntity ($newmsg);
b74ba498 105 } while ($structure{$end+1} == '(');
8beafbbc 106 } else {
107 // parse the elements
090595e1 108 $msg = mime_get_element ($structure, $msg, $ent_id);
8beafbbc 109 }
bc64f471 110 return $msg;
8beafbbc 111 }
112
113 // Increments the element ID. An element id can look like any of
114 // the following: 1, 1.2, 4.3.2.4.1, etc. This function increments
115 // the last number of the element id, changing 1.2 to 1.3.
116 function mime_increment_id ($id) {
b74ba498 117
8beafbbc 118 if (strpos($id, ".")) {
119 $first = substr($id, 0, strrpos($id, "."));
ea48eb25 120 $last = substr($id, strrpos($id, ".")+1);
8beafbbc 121 $last++;
ea48eb25 122 $new = $first . "." .$last;
8beafbbc 123 } else {
124 $new = $id + 1;
125 }
b74ba498 126
8beafbbc 127 return $new;
128 }
129
130 // See comment for mime_increment_id().
131 // This adds another level on to the entity_id changing 1.3 to 1.3.0
b74ba498 132 // NOTE: 1.3.0 is not a valid element ID. It MUST be incremented
8beafbbc 133 // before it can be used. I left it this way so as not to have
134 // to make a special case if it is the first entity_id. It
135 // always increments it, and that works fine.
136 function mime_new_element_level ($id) {
ea48eb25 137
b74ba498 138 if (!$id) {
139 $id = 0;
140 } else {
141 $id = $id . '.0';
142 }
143
144 return( $id );
8beafbbc 145 }
146
ea48eb25 147 function mime_get_element (&$structure, $msg, $ent_id) {
b74ba498 148
8beafbbc 149 $elem_num = 1;
ea48eb25 150 $msg->header = new msg_header();
151 $msg->header->entity_id = $ent_id;
4bbe6ccc 152 $properties = array();
b74ba498 153
8beafbbc 154 while (strlen($structure) > 0) {
155 $structure = trim($structure);
b74ba498 156 $char = $structure{0};
8beafbbc 157
b74ba498 158 if (strtolower(substr($structure, 0, 3)) == 'nil') {
159 $text = '';
8beafbbc 160 $structure = substr($structure, 3);
b74ba498 161 } else if ($char == '"') {
8beafbbc 162 // loop through until we find the matching quote, and return that as a string
163 $pos = 1;
b74ba498 164 $text = '';
165 while ( ($char = $structure{$pos} ) <> '"' && $pos < strlen($structure)) {
8beafbbc 166 $text .= $char;
167 $pos++;
b74ba498 168 }
8beafbbc 169 $structure = substr($structure, strlen($text) + 2);
b74ba498 170 } else if ($char == '(') {
8beafbbc 171 // comment me
172 $end = mime_match_parenthesis (0, $structure);
173 $sub = substr($structure, 1, $end-1);
174 $properties = mime_get_props($properties, $sub);
175 $structure = substr($structure, strlen($sub) + 2);
176 } else {
177 // loop through until we find a space or an end parenthesis
178 $pos = 0;
b74ba498 179 $char = $structure{$pos};
180 $text = '';
181 while ($char != ' ' && $char != ')' && $pos < strlen($structure)) {
8beafbbc 182 $text .= $char;
183 $pos++;
b74ba498 184 $char = $structure{$pos};
aceb0d5c 185 }
8beafbbc 186 $structure = substr($structure, strlen($text));
aceb0d5c 187 }
8beafbbc 188
189 // This is where all the text parts get put into the header
190 switch ($elem_num) {
b74ba498 191 case 1:
22ef7536 192 $msg->header->type0 = strtolower($text);
8beafbbc 193 break;
b74ba498 194 case 2:
22ef7536 195 $msg->header->type1 = strtolower($text);
8beafbbc 196 break;
b74ba498 197 case 4: // Id
198 // Invisimail enclose images with <>
199 $msg->header->id = str_replace( '<', '', str_replace( '>', '', $text ) );
200 break;
ea48eb25 201 case 5:
202 $msg->header->description = $text;
ea48eb25 203 break;
8beafbbc 204 case 6:
22ef7536 205 $msg->header->encoding = strtolower($text);
8beafbbc 206 break;
207 case 7:
ea48eb25 208 $msg->header->size = $text;
8beafbbc 209 break;
210 default:
b74ba498 211 if ($msg->header->type0 == 'text' && $elem_num == 8) {
cbcf32f6 212 // This is a plain text message, so lets get the number of lines
213 // that it contains.
ea48eb25 214 $msg->header->num_lines = $text;
cbcf32f6 215
b74ba498 216 } else if ($msg->header->type0 == 'message' && $msg->header->type1 == 'rfc822' && $elem_num == 8) {
217 // This is an encapsulated message, so lets start all over again and
ea48eb25 218 // parse this message adding it on to the existing one.
219 $structure = trim($structure);
b74ba498 220 if ( $structure{0} == '(' ) {
ea48eb25 221 $e = mime_match_parenthesis (0, $structure);
222 $structure = substr($structure, 0, $e);
223 $structure = substr($structure, 1);
224 $m = mime_parse_structure($structure, $msg->header->entity_id);
b74ba498 225
cbcf32f6 226 // the following conditional is there to correct a bug that wasn't
227 // incrementing the entity IDs correctly because of the special case
228 // that message/rfc822 is. This fixes it fine.
b74ba498 229 if (substr($structure, 1, 1) != '(')
ea48eb25 230 $m->header->entity_id = mime_increment_id(mime_new_element_level($ent_id));
b74ba498 231
cbcf32f6 232 // Now we'll go through and reformat the results.
ea48eb25 233 if ($m->entities) {
234 for ($i=0; $i < count($m->entities); $i++) {
ea48eb25 235 $msg->addEntity($m->entities[$i]);
236 }
237 } else {
ea48eb25 238 $msg->addEntity($m);
239 }
b74ba498 240 $structure = "";
ea48eb25 241 }
8beafbbc 242 }
243 break;
244 }
245 $elem_num++;
246 $text = "";
247 }
248 // loop through the additional properties and put those in the various headers
b74ba498 249 if ($msg->header->type0 != 'message') {
cbcf32f6 250 for ($i=0; $i < count($properties); $i++) {
b74ba498 251 $msg->header->{$properties[$i]['name']} = $properties[$i]['value'];
cbcf32f6 252 }
ea48eb25 253 }
e4a256af 254
ea48eb25 255 return $msg;
8beafbbc 256 }
257
258 // I did most of the MIME stuff yesterday (June 20, 2000), but I couldn't
259 // figure out how to do this part, so I decided to go to bed. I woke up
260 // in the morning and had a flash of insight. I went to the white-board
261 // and scribbled it out, then spent a bit programming it, and this is the
262 // result. Nothing complicated, but I think my brain was fried yesterday.
cbcf32f6 263 // Funny how that happens some times.
8beafbbc 264 //
265 // This gets properties in a nested parenthesisized list. For example,
266 // this would get passed something like: ("attachment" ("filename" "luke.tar.gz"))
267 // This returns an array called $props with all paired up properties.
b74ba498 268 // It ignores the "attachment" for now, maybe that should change later
8beafbbc 269 // down the road. In this case, what is returned is:
270 // $props[0]["name"] = "filename";
271 // $props[0]["value"] = "luke.tar.gz";
272 function mime_get_props ($props, $structure) {
b74ba498 273
8beafbbc 274 while (strlen($structure) > 0) {
275 $structure = trim($structure);
b74ba498 276 $char = $structure{0};
8beafbbc 277
b74ba498 278 if ($char == '"') {
8beafbbc 279 $pos = 1;
b74ba498 280 $tmp = '';
281 while ( ( $char = $structure{$pos} ) != '"' &&
282 $pos < strlen($structure)) {
8beafbbc 283 $tmp .= $char;
284 $pos++;
b74ba498 285 }
8beafbbc 286 $structure = trim(substr($structure, strlen($tmp) + 2));
b74ba498 287 $char = $structure{0};
8beafbbc 288
b74ba498 289 if ($char == '"') {
8beafbbc 290 $pos = 1;
b74ba498 291 $value = '';
292 while ( ( $char = $structure{$pos} ) != '"' &&
293 $pos < strlen($structure) ) {
8beafbbc 294 $value .= $char;
295 $pos++;
b74ba498 296 }
8beafbbc 297 $structure = trim(substr($structure, strlen($tmp) + 2));
b74ba498 298
8beafbbc 299 $k = count($props);
b74ba498 300 $props[$k]['name'] = strtolower($tmp);
301 $props[$k]['value'] = $value;
302 } else if ($char == '(') {
8beafbbc 303 $end = mime_match_parenthesis (0, $structure);
304 $sub = substr($structure, 1, $end-1);
b74ba498 305 if (! isset($props))
306 $props = array();
8beafbbc 307 $props = mime_get_props($props, $sub);
308 $structure = substr($structure, strlen($sub) + 2);
309 }
310 return $props;
b74ba498 311 } else if ($char == '(') {
8beafbbc 312 $end = mime_match_parenthesis (0, $structure);
313 $sub = substr($structure, 1, $end-1);
314 $props = mime_get_props($props, $sub);
315 $structure = substr($structure, strlen($sub) + 2);
ea48eb25 316 return $props;
8beafbbc 317 } else {
318 return $props;
7831268e 319 }
8beafbbc 320 }
321 }
7831268e 322
8beafbbc 323 // Matches parenthesis. It will return the position of the matching
324 // parenthesis in $structure. For instance, if $structure was:
325 // ("text" "plain" ("val1name", "1") nil ... )
326 // x x
327 // then this would return 42 to match up those two.
328 function mime_match_parenthesis ($pos, $structure) {
b74ba498 329
330 $j = strlen( $structure );
8beafbbc 331
332 // ignore all extra characters
5ffe5a7e 333 // If inside of a string, skip string -- Boundary IDs and other
334 // things can have ) in them.
b74ba498 335 if( $structure{$pos} != '(' )
336 return( $j );
337
338 while( $pos < $j ) {
8beafbbc 339 $pos++;
b74ba498 340 if ($structure{$pos} == ')') {
8beafbbc 341 return $pos;
b74ba498 342 } elseif ($structure{$pos} == '"') {
343 $pos++;
344 while( $structure{$pos} != '"' &&
345 $pos < $j ) {
346 if (substr($structure, $pos, 2) == '\\"')
347 $pos++;
348 elseif (substr($structure, $pos, 2) == '\\\\')
349 $pos++;
350 $pos++;
5ffe5a7e 351 }
b74ba498 352 } elseif ( $structure{$pos} == '(' ) {
8beafbbc 353 $pos = mime_match_parenthesis ($pos, $structure);
354 }
d4467150 355 }
377a40b2 356 echo "Error decoding mime structure. Report this as a bug!<br>\n";
b74ba498 357 return( $pos );
8beafbbc 358 }
d4467150 359
8beafbbc 360 function mime_fetch_body ($imap_stream, $id, $ent_id) {
361 // do a bit of error correction. If we couldn't find the entity id, just guess
362 // that it is the first one. That is usually the case anyway.
363 if (!$ent_id) $ent_id = 1;
364
180aa6d7 365 fputs ($imap_stream, sqimap_session_id() . " FETCH $id BODY[$ent_id]\r\n");
366 $data = sqimap_read_data ($imap_stream, sqimap_session_id(), true, $response, $message);
2d32cb9f 367 $topline = array_shift($data);
1eb943d4 368 while (! ereg('\\* [0-9]+ FETCH ', $topline) && $data)
2d32cb9f 369 $topline = array_shift($data);
6ff90ce9 370 $wholemessage = implode('', $data);
2d32cb9f 371
146e0c45 372 if (ereg('\\{([^\\}]*)\\}', $topline, $regs)) {
2d32cb9f 373 return substr($wholemessage, 0, $regs[1]);
441f2d33 374 }
375 else if (ereg('"([^"]*)"', $topline, $regs)) {
376 return $regs[1];
377 }
b74ba498 378
180aa6d7 379 $str = "Body retrieval error. Please report this bug!\n" .
380 "Response: $response\n" .
381 "Message: $message\n" .
382 "FETCH line: $topline" .
383 "---------------\n$wholemessage";
384 foreach ($data as $d) {
2d32cb9f 385 $str .= htmlspecialchars($d) . "\n";
386 }
387 return $str;
d4467150 388 }
389
beb9e459 390 function mime_print_body_lines ($imap_stream, $id, $ent_id, $encoding) {
391 // do a bit of error correction. If we couldn't find the entity id, just guess
392 // that it is the first one. That is usually the case anyway.
393 if (!$ent_id) $ent_id = 1;
b74ba498 394 $sid = sqimap_session_id();
1d1e02f4 395 // Don't kill the connection if the browser is over a dialup
396 // and it would take over 30 seconds to download it.
397 set_time_limit(0);
398
b74ba498 399 fputs ($imap_stream, "$sid FETCH $id BODY[$ent_id]\r\n");
400 $cnt = 0;
401 $continue = true;
402 $read = fgets ($imap_stream,4096);
403 // This could be bad -- if the section has sqimap_session_id() . ' OK'
404 // or similar, it will kill the download.
405 while (!ereg("^".$sid." (OK|BAD|NO)(.*)$", $read, $regs)) {
406 if (trim($read) == ')==') {
407 $read1 = $read;
408 $read = fgets ($imap_stream,4096);
409 if (ereg("^".$sid." (OK|BAD|NO)(.*)$", $read, $regs)) {
410 return;
411 } else {
412 echo decodeBody($read1, $encoding) .
413 decodeBody($read, $encoding);
414 }
415 } else if ($cnt) {
416 echo decodeBody($read, $encoding);
417 }
418 $read = fgets ($imap_stream,4096);
419 $cnt++;
420 }
beb9e459 421 }
422
8beafbbc 423 /* -[ END MIME DECODING ]----------------------------------------------------------- */
d4467150 424
aceb0d5c 425
d4467150 426
8beafbbc 427 /** This is the first function called. It decides if this is a multipart
428 message or if it should be handled as a single entity
4809f489 429 **/
090595e1 430 function decodeMime ($imap_stream, &$header) {
8beafbbc 431 global $username, $key, $imapServerAddress, $imapPort;
8d8ab69a 432 return mime_structure ($imap_stream, $header);
8beafbbc 433 }
b1dadc61 434
cbcf32f6 435 // This is here for debugging purposese. It will print out a list
436 // of all the entity IDs that are in the $message object.
b74ba498 437 /*
ea48eb25 438 function listEntities ($message) {
439 if ($message) {
cbcf32f6 440 if ($message->header->entity_id)
b74ba498 441 echo "<tt>" . $message->header->entity_id . ' : ' . $message->header->type0 . '/' . $message->header->type1 . '<br>';
cbcf32f6 442 for ($i = 0; $message->entities[$i]; $i++) {
443 $msg = listEntities($message->entities[$i], $ent_id);
444 if ($msg)
445 return $msg;
446 }
ea48eb25 447 }
448 }
b74ba498 449 */
ea48eb25 450
cbcf32f6 451 // returns a $message object for a particular entity id
8beafbbc 452 function getEntity ($message, $ent_id) {
453 if ($message) {
ea48eb25 454 if ($message->header->entity_id == $ent_id && strlen($ent_id) == strlen($message->header->entity_id)) {
8beafbbc 455 return $message;
b1dadc61 456 } else {
cd928157 457 for ($i = 0; isset($message->entities[$i]); $i++) {
8beafbbc 458 $msg = getEntity ($message->entities[$i], $ent_id);
459 if ($msg)
460 return $msg;
b1dadc61 461 }
b74ba498 462 }
8beafbbc 463 }
464 }
465
cbcf32f6 466 // figures out what entity to display and returns the $message object
467 // for that entity.
c3a80dac 468 function findDisplayEntity ($message, $textOnly = 1)
e2ab93e5 469 {
470 global $show_html_default;
b74ba498 471
e2ab93e5 472 if (! $message)
b74ba498 473 return 0;
474
475 if ($message->header->type0 == 'multipart' &&
476 $message->header->type1 == 'alternative' &&
477 $show_html_default && ! $textOnly) {
478 $entity = findDisplayEntityHTML($message);
479 if ($entity != 0)
480 return $entity;
c3a80dac 481 }
b74ba498 482
e2ab93e5 483 // Show text/plain or text/html -- the first one we find.
b74ba498 484 if ( $message->header->type0 == 'text' &&
485 ( $message->header->type1 == 'plain' ||
486 $message->header->type1 == 'html' ) &&
487 isset($message->header->entity_id) )
488 return $message->header->entity_id;
c3a80dac 489
490 for ($i=0; isset($message->entities[$i]); $i++) {
491 $entity = findDisplayEntity($message->entities[$i], $textOnly);
492 if ($entity != 0)
493 return $entity;
494 }
b74ba498 495
c3a80dac 496 return 0;
497 }
b74ba498 498
c3a80dac 499 // Shows the HTML version
500 function findDisplayEntityHTML ($message) {
b74ba498 501 if ($message->header->type0 == 'text' &&
c3a80dac 502 $message->header->type1 == 'html' &&
b74ba498 503 isset($message->header->entity_id))
504 return $message->header->entity_id;
c3a80dac 505 for ($i = 0; isset($message->entities[$i]); $i ++) {
506 $entity = findDisplayEntityHTML($message->entities[$i]);
b74ba498 507 if ($entity != 0)
508 return $entity;
c3a80dac 509 }
e2ab93e5 510 return 0;
b1dadc61 511 }
8405ee35 512
d068c0ec 513 /** This returns a parsed string called $body. That string can then
514 be displayed as the actual message in the HTML. It contains
515 everything needed, including HTML Tags, Attachments at the
516 bottom, etc.
4809f489 517 **/
8d8ab69a 518 function formatBody($imap_stream, $message, $color, $wrap_at) {
cbcf32f6 519 // this if statement checks for the entity to show as the
520 // primary message. To add more of them, just put them in the
521 // order that is their priority.
5f1c529a 522 global $startMessage, $username, $key, $imapServerAddress, $imapPort,
523 $show_html_default;
8beafbbc 524
8beafbbc 525 $id = $message->header->id;
526 $urlmailbox = urlencode($message->header->mailbox);
527
e4a256af 528 // Get the right entity and redefine message to be this entity
3ae6e629 529 // Pass the 0 to mean that we want the 'best' viewable one
530 $ent_num = findDisplayEntity ($message, 0);
2c252f5a 531 $body_message = getEntity($message, $ent_num);
b74ba498 532 if (($body_message->header->type0 == 'text') ||
533 ($body_message->header->type0 == 'rfc822')) {
534
d51894be 535 $body = mime_fetch_body ($imap_stream, $id, $ent_num);
d4ff4d67 536 $body = decodeBody($body, $body_message->header->encoding);
b74ba498 537 $hookResults = do_hook("message_body", $body);
538 $body = $hookResults[1];
b36d403c 539
d4ff4d67 540 // If there are other types that shouldn't be formatted, add
b74ba498 541 // them here
e235ccb2 542 if ($body_message->header->type1 != "html" || ! $show_html_default) {
9eea179c 543 translateText($body, $wrap_at, $body_message->header->charset);
b74ba498 544 }
545
7b9592dc 546 $body .= "<SMALL><CENTER><A HREF=\"../src/download.php?absolute_dl=true&passed_id=$id&passed_ent_id=$ent_num&mailbox=$urlmailbox&showHeaders=1\">". _("Download this as a file") ."</A></CENTER><BR></SMALL>";
b74ba498 547
d4ff4d67 548 /** Display the ATTACHMENTS: message if there's more than one part **/
dd389be5 549 $body .= "</TD></TR></TABLE>";
719534f2 550 if (isset($message->entities[0])) {
d4ff4d67 551 $body .= formatAttachments ($message, $ent_num, $message->header->mailbox, $id);
d4ff4d67 552 }
b74ba498 553 $body .= "</TD></TR></TABLE>";
d4ff4d67 554 } else {
cba164a0 555 $body = formatAttachments ($message, -1, $message->header->mailbox, $id);
8405ee35 556 }
b74ba498 557 return( $body );
d4467150 558 }
559
8beafbbc 560 // A recursive function that returns a list of attachments with links
561 // to where to download these attachments
562 function formatAttachments ($message, $ent_id, $mailbox, $id) {
f4991a86 563 global $where, $what;
dd389be5 564 global $startMessage, $color;
719534f2 565 static $ShownHTML = 0;
b74ba498 566
567 $body = "";
568 if ($ShownHTML == 0) {
dd389be5 569 $ShownHTML = 1;
b74ba498 570
571 $body .= "<TABLE WIDTH=100% CELLSPACING=0 CELLPADDING=2 BORDER=0 BGCOLOR=\"$color[0]\"><TR>\n" .
572 "<TH ALIGN=\"left\" BGCOLOR=\"$color[9]\"><B>\n" .
573 _("Attachments") . ':' .
574 "</B></TH></TR><TR><TD>\n" .
575 "<TABLE CELLSPACING=0 CELLPADDING=1 BORDER=0>\n" .
576 formatAttachments ($message, $ent_id, $mailbox, $id) .
577 "</TABLE></TD></TR></TABLE>";
578
579 return( $body );
dd389be5 580 }
b74ba498 581
8beafbbc 582 if ($message) {
583 if (!$message->entities) {
584 $type0 = strtolower($message->header->type0);
585 $type1 = strtolower($message->header->type1);
66e1a00e 586 $name = decodeHeader($message->header->name);
b74ba498 587
8beafbbc 588 if ($message->header->entity_id != $ent_id) {
888c82e2 589 $filename = decodeHeader($message->header->filename);
b74ba498 590 if (trim($filename) == '') {
591 if (trim($name) == '') {
592 if( trim( $message->header->id ) == '' )
593 $display_filename = 'untitled-[' . $message->header->entity_id . ']' ;
594 else
595 $display_filename = 'cid: ' . $message->header->id;
596 // $display_filename = 'untitled-[' . $message->header->entity_id . ']' ;
597 } else {
598 $display_filename = $name;
599 $filename = $name;
600 }
8beafbbc 601 } else {
602 $display_filename = $filename;
603 }
b74ba498 604
8beafbbc 605 $urlMailbox = urlencode($mailbox);
606 $ent = urlencode($message->header->entity_id);
b74ba498 607
608 $DefaultLink =
bc104ef3 609 "../src/download.php?startMessage=$startMessage&passed_id=$id&mailbox=$urlMailbox&passed_ent_id=$ent";
dd389be5 610 if ($where && $what)
611 $DefaultLink .= '&where=' . urlencode($where) . '&what=' . urlencode($what);
701c9c6b 612 $Links['download link']['text'] = _("download");
b74ba498 613 $Links['download link']['href'] =
bc104ef3 614 "../src/download.php?absolute_dl=true&passed_id=$id&mailbox=$urlMailbox&passed_ent_id=$ent";
dd389be5 615 $ImageURL = '';
b74ba498 616
dd389be5 617 $HookResults = do_hook("attachment $type0/$type1", $Links,
b74ba498 618 $startMessage, $id, $urlMailbox, $ent, $DefaultLink,
ef30bf50 619 $display_filename, $where, $what);
dd389be5 620
621 $Links = $HookResults[1];
622 $DefaultLink = $HookResults[6];
623
b74ba498 624 $body .= '<TR><TD>&nbsp;&nbsp;</TD><TD>' .
625 "<A HREF=\"$DefaultLink\">$display_filename</A>&nbsp;</TD>" .
626 '<TD><SMALL><b>' . show_readable_size($message->header->size) .
627 '</b>&nbsp;&nbsp;</small></TD>' .
628 "<TD><SMALL>[ $type0/$type1 ]&nbsp;</SMALL></TD>" .
629 '<TD><SMALL>';
ea48eb25 630 if ($message->header->description)
dd389be5 631 $body .= '<b>' . htmlspecialchars($message->header->description) . '</b>';
fde32e3f 632 $body .= '</SMALL></TD><TD><SMALL>&nbsp;';
b74ba498 633
634
dd389be5 635 $SkipSpaces = 1;
b74ba498 636 foreach ($Links as $Val) {
637 if ($SkipSpaces) {
dd389be5 638 $SkipSpaces = 0;
b74ba498 639 } else {
fde32e3f 640 $body .= '&nbsp;&nbsp;|&nbsp;&nbsp;';
dd389be5 641 }
fde32e3f 642 $body .= '<a href="' . $Val['href'] . '">' . $Val['text'] . '</a>';
dd389be5 643 }
b74ba498 644
dd389be5 645 unset($Links);
b74ba498 646
fde32e3f 647 $body .= "</SMALL></TD></TR>\n";
8beafbbc 648 }
8beafbbc 649 } else {
650 for ($i = 0; $i < count($message->entities); $i++) {
651 $body .= formatAttachments ($message->entities[$i], $ent_id, $mailbox, $id);
652 }
8beafbbc 653 }
b74ba498 654 return( $body );
8beafbbc 655 }
656 }
4809f489 657
658
659 /** this function decodes the body depending on the encoding type. **/
d4467150 660 function decodeBody($body, $encoding) {
623332f3 661 $body = str_replace("\r\n", "\n", $body);
d4467150 662 $encoding = strtolower($encoding);
7831268e 663
358f007e 664 global $show_html_default;
665
b74ba498 666 if ($encoding == 'quoted-printable') {
ef3f274f 667 $body = quoted_printable_decode($body);
b74ba498 668
669
670 /*
671 Following code has been comented as I see no reason for it.
672 If there is any please tell me a mingo@rotedic.com
673
ef3f274f 674 while (ereg("=\n", $body))
675 $body = ereg_replace ("=\n", "", $body);
b74ba498 676 */
677 } else if ($encoding == 'base64') {
ef3f274f 678 $body = base64_decode($body);
d4467150 679 }
b74ba498 680
a47b5200 681 // All other encodings are returned raw.
ef3f274f 682 return $body;
aceb0d5c 683 }
a4c2cd49 684
685
b74ba498 686 // This functions decode strings that is encoded according to
a4c2cd49 687 // RFC1522 (MIME Part Two: Message Header Extensions for Non-ASCII Text).
2e434774 688 function decodeHeader ($string) {
b74ba498 689 if (eregi('=\\?([^?]+)\\?(q|b)\\?([^?]+)\\?=',
a4c2cd49 690 $string, $res)) {
1fd97780 691 if (ucfirst($res[2]) == "B") {
692 $replace = base64_decode($res[3]);
a4c2cd49 693 } else {
1fd97780 694 $replace = ereg_replace("_", " ", $res[3]);
b74ba498 695 // Convert lowercase Quoted Printable to uppercase for
696 // quoted_printable_decode to understand it.
697 while (ereg("(=(([0-9][abcdef])|([abcdef][0-9])|([abcdef][abcdef])))", $replace, $res)) {
698 $replace = str_replace($res[1], strtoupper($res[1]), $replace);
699 }
a4c2cd49 700 $replace = quoted_printable_decode($replace);
701 }
702
1fd97780 703 $replace = charset_decode ($res[1], $replace);
a4c2cd49 704
9be55c4b 705 // Remove the name of the character set.
706 $string = eregi_replace ('=\\?([^?]+)\\?(q|b)\\?([^?]+)\\?=',
a4c2cd49 707 $replace, $string);
9be55c4b 708
2e434774 709 // In case there should be more encoding in the string: recurse
710 return (decodeHeader($string));
b74ba498 711 } else
a4c2cd49 712 return ($string);
713 }
714
c3084273 715 // Encode a string according to RFC 1522 for use in headers if it
bb60fa3f 716 // contains 8-bit characters or anything that looks like it should
717 // be encoded.
c3084273 718 function encodeHeader ($string) {
719 global $default_charset;
b74ba498 720
f7b3ba37 721 // Encode only if the string contains 8-bit characters or =?
722 $j = strlen( $string );
723 $l = FALSE; // Must be encoded ?
724 $ret = '';
725 for( $i=0; $i < $j; ++$i) {
726 switch( $string{$i} ) {
727 case '=':
b74ba498 728 $ret .= '=3D';
729 break;
730 case '?':
731 $l = TRUE;
732 $ret .= '=3F';
733 break;
734 case '_':
735 $ret .= '=5F';
736 break;
737 case ' ':
738 $ret .= '_';
739 break;
740 default:
741 $k = ord( $string{$i} );
742 if( $k > 126 ) {
743 $ret .= sprintf("=%02X", $k);
744 $l = TRUE;
745 } else
746 $ret .= $string{$i};
f7b3ba37 747 }
748 }
b74ba498 749
f7b3ba37 750 if( $l )
751 $string = "=?$default_charset?Q?$ret?=";
b74ba498 752
f7b3ba37 753 return( $string );
754 }
c3084273 755
9f9d7d28 756?>