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