Just fiddling. Give credit where credit is due. Template class header() function...
[squirrelmail.git] / class / mime / Rfc822Header.class.php
CommitLineData
19d470aa 1<?php
2
3/**
4 * Rfc822Header.class.php
5 *
0f459286 6 * This file contains functions needed to handle headers in mime messages.
19d470aa 7 *
4b5049de 8 * @copyright &copy; 2003-2007 The SquirrelMail Project Team
4b4abf93 9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
883d9cd3 10 * @version $Id$
2b646597 11 * @package squirrelmail
0f459286 12 * @subpackage mime
13 * @since 1.3.2
19d470aa 14 */
15
2b646597 16/**
0f459286 17 * MIME header class
19d470aa 18 * input: header_string or array
0f459286 19 * You must call parseHeader() function after creating object in order to fill object's
20 * parameters.
21 * @todo FIXME: there is no constructor function and class should ignore all input args.
2b646597 22 * @package squirrelmail
0f459286 23 * @subpackage mime
24 * @since 1.3.0
19d470aa 25 */
26class Rfc822Header {
9ed80157 27 /**
28 * Date header
29 * @var mixed
30 */
31 var $date = -1;
3aaa3214 32 /**
609f416c 33 * Original date header as fallback for unparsable dates
3aaa3214 34 * @var mixed
35 */
36 var $date_unparsed = '';
9ed80157 37 /**
38 * Subject header
39 * @var string
40 */
41 var $subject = '';
42 /**
43 * From header
44 * @var array
45 */
46 var $from = array();
47 /**
48 * @var mixed
49 */
50 var $sender = '';
51 /**
52 * Reply-To header
53 * @var array
54 */
55 var $reply_to = array();
56 /**
57 * Mail-Followup-To header
58 * @var array
59 */
60 var $mail_followup_to = array();
61 /**
62 * To header
63 * @var array
64 */
65 var $to = array();
66 /**
67 * Cc header
68 * @var array
69 */
70 var $cc = array();
71 /**
72 * Bcc header
73 * @var array
74 */
75 var $bcc = array();
76 /**
77 * In-reply-to header
78 * @var string
79 */
80 var $in_reply_to = '';
81 /**
82 * Message-ID header
83 * @var string
84 */
85 var $message_id = '';
86 /**
87 * References header
88 * @var string
89 */
90 var $references = '';
91 /**
92 * @var mixed
93 */
94 var $mime = false;
95 /**
ae1c6dbe 96 * Content Type object
97 * @var object
9ed80157 98 */
99 var $content_type = '';
100 /**
101 * @var mixed
102 */
103 var $disposition = '';
104 /**
105 * X-Mailer header
106 * @var string
107 */
108 var $xmailer = '';
109 /**
110 * Priority header
111 * @var integer
112 */
113 var $priority = 3;
114 /**
644c6055 115 * Disposition notification for requesting message delivery notification (MDN)
9ed80157 116 * @var mixed
117 */
118 var $dnt = '';
644c6055 119 /**
120 * Delivery notification (DR)
121 * @var mixed
122 */
123 var $drnt = '';
9ed80157 124 /**
125 * @var mixed
126 */
127 var $encoding = '';
128 /**
129 * @var mixed
130 */
131 var $content_id = '';
132 /**
133 * @var mixed
134 */
135 var $content_desc = '';
136 /**
137 * @var mixed
138 */
139 var $mlist = array();
1a64a084 140 /**
141 * SpamAssassin 'x-spam-status' header
142 * @var mixed
143 */
144 var $x_spam_status = array();
9ed80157 145 /**
146 * Extra header
147 * only needed for constructing headers in delivery class
148 * @var array
149 */
150 var $more_headers = array();
151
0f459286 152 /**
153 * @param mixed $hdr string or array with message headers
154 */
19d470aa 155 function parseHeader($hdr) {
156 if (is_array($hdr)) {
157 $hdr = implode('', $hdr);
158 }
2a9b0fad 159 /* First we replace \r\n by \n and unfold the header */
0f459286 160 /* FIXME: unfolding header with multiple spaces "\n( +)" */
2a9b0fad 161 $hdr = trim(str_replace(array("\r\n", "\n\t", "\n "),array("\n", ' ', ' '), $hdr));
19d470aa 162
163 /* Now we can make a new header array with */
164 /* each element representing a headerline */
2a9b0fad 165 $hdr = explode("\n" , $hdr);
19d470aa 166 foreach ($hdr as $line) {
167 $pos = strpos($line, ':');
168 if ($pos > 0) {
169 $field = substr($line, 0, $pos);
340d67c2 170 if (!strstr($field,' ')) { /* valid field */
171 $value = trim(substr($line, $pos+1));
172 $this->parseField($field, $value);
173 }
19d470aa 174 }
175 }
ae1c6dbe 176 if (!is_object($this->content_type)) {
19d470aa 177 $this->parseContentType('text/plain; charset=us-ascii');
178 }
179 }
180
0f459286 181 /**
182 * @param string $value
183 * @return string
184 */
19d470aa 185 function stripComments($value) {
186 $result = '';
19d470aa 187 $cnt = strlen($value);
188 for ($i = 0; $i < $cnt; ++$i) {
189 switch ($value{$i}) {
190 case '"':
191 $result .= '"';
192 while ((++$i < $cnt) && ($value{$i} != '"')) {
193 if ($value{$i} == '\\') {
194 $result .= '\\';
195 ++$i;
196 }
197 $result .= $value{$i};
198 }
bf489229 199 if($i < $cnt) {
200 $result .= $value{$i};
201 }
19d470aa 202 break;
203 case '(':
204 $depth = 1;
205 while (($depth > 0) && (++$i < $cnt)) {
206 switch($value{$i}) {
207 case '\\':
208 ++$i;
209 break;
210 case '(':
211 ++$depth;
212 break;
213 case ')':
214 --$depth;
215 break;
216 default:
217 break;
218 }
219 }
220 break;
221 default:
222 $result .= $value{$i};
223 break;
224 }
225 }
226 return $result;
227 }
228
0f459286 229 /**
230 * Parse header field according to field type
231 * @param string $field field name
232 * @param string $value field value
233 */
19d470aa 234 function parseField($field, $value) {
235 $field = strtolower($field);
236 switch($field) {
237 case 'date':
340d67c2 238 $value = $this->stripComments($value);
19d470aa 239 $d = strtr($value, array(' ' => ' '));
240 $d = explode(' ', $d);
241 $this->date = getTimeStamp($d);
3aaa3214 242 $this->date_unparsed = strtr($value,'<>',' ');
19d470aa 243 break;
244 case 'subject':
245 $this->subject = $value;
246 break;
247 case 'from':
248 $this->from = $this->parseAddress($value,true);
249 break;
250 case 'sender':
251 $this->sender = $this->parseAddress($value);
252 break;
253 case 'reply-to':
254 $this->reply_to = $this->parseAddress($value, true);
255 break;
b268e66b 256 case 'mail-followup-to':
257 $this->mail_followup_to = $this->parseAddress($value, true);
258 break;
19d470aa 259 case 'to':
260 $this->to = $this->parseAddress($value, true);
261 break;
262 case 'cc':
263 $this->cc = $this->parseAddress($value, true);
264 break;
265 case 'bcc':
266 $this->bcc = $this->parseAddress($value, true);
267 break;
268 case 'in-reply-to':
269 $this->in_reply_to = $value;
270 break;
271 case 'message-id':
340d67c2 272 $value = $this->stripComments($value);
19d470aa 273 $this->message_id = $value;
274 break;
340d67c2 275 case 'references':
276 $value = $this->stripComments($value);
277 $this->references = $value;
278 break;
279 case 'x-confirm-reading-to':
19d470aa 280 case 'disposition-notification-to':
340d67c2 281 $value = $this->stripComments($value);
19d470aa 282 $this->dnt = $this->parseAddress($value);
283 break;
644c6055 284 case 'return-receipt-to':
285 $value = $this->stripComments($value);
286 $this->drnt = $this->parseAddress($value);
287 break;
19d470aa 288 case 'mime-version':
340d67c2 289 $value = $this->stripComments($value);
19d470aa 290 $value = str_replace(' ', '', $value);
291 $this->mime = ($value == '1.0' ? true : $this->mime);
292 break;
293 case 'content-type':
340d67c2 294 $value = $this->stripComments($value);
19d470aa 295 $this->parseContentType($value);
296 break;
297 case 'content-disposition':
340d67c2 298 $value = $this->stripComments($value);
19d470aa 299 $this->parseDisposition($value);
300 break;
cfebb724 301 case 'content-transfer-encoding':
302 $this->encoding = $value;
303 break;
304 case 'content-description':
305 $this->content_desc = $value;
306 break;
307 case 'content-id':
308 $value = $this->stripComments($value);
309 $this->content_id = $value;
310 break;
19d470aa 311 case 'user-agent':
312 case 'x-mailer':
340d67c2 313 $this->xmailer = $value;
19d470aa 314 break;
315 case 'x-priority':
bddb3448 316 case 'importance':
317 case 'priority':
318 $this->priority = $this->parsePriority($value);
19d470aa 319 break;
320 case 'list-post':
340d67c2 321 $value = $this->stripComments($value);
19d470aa 322 $this->mlist('post', $value);
323 break;
324 case 'list-reply':
cfebb724 325 $value = $this->stripComments($value);
19d470aa 326 $this->mlist('reply', $value);
327 break;
328 case 'list-subscribe':
cfebb724 329 $value = $this->stripComments($value);
19d470aa 330 $this->mlist('subscribe', $value);
331 break;
332 case 'list-unsubscribe':
340d67c2 333 $value = $this->stripComments($value);
19d470aa 334 $this->mlist('unsubscribe', $value);
335 break;
336 case 'list-archive':
340d67c2 337 $value = $this->stripComments($value);
19d470aa 338 $this->mlist('archive', $value);
339 break;
340 case 'list-owner':
340d67c2 341 $value = $this->stripComments($value);
19d470aa 342 $this->mlist('owner', $value);
343 break;
344 case 'list-help':
340d67c2 345 $value = $this->stripComments($value);
19d470aa 346 $this->mlist('help', $value);
347 break;
ba4d5a32 348 case 'list-id':
349 $value = $this->stripComments($value);
350 $this->mlist('id', $value);
351 break;
3aaa3214 352 case 'x-spam-status':
1a64a084 353 $this->x_spam_status = $this->parseSpamStatus($value);
354 break;
19d470aa 355 default:
356 break;
357 }
358 }
14882b16 359
0f459286 360 /**
361 * @param string $address
362 * @return array
363 */
14882b16 364 function getAddressTokens($address) {
365 $aTokens = array();
14882b16 366 $aSpecials = array('(' ,'<' ,',' ,';' ,':');
367 $aReplace = array(' (',' <',' ,',' ;',' :');
368 $address = str_replace($aSpecials,$aReplace,$address);
55243181 369 $iCnt = strlen($address);
14882b16 370 $i = 0;
371 while ($i < $iCnt) {
372 $cChar = $address{$i};
373 switch($cChar)
374 {
375 case '<':
376 $iEnd = strpos($address,'>',$i+1);
377 if (!$iEnd) {
378 $sToken = substr($address,$i);
379 $i = $iCnt;
380 } else {
381 $sToken = substr($address,$i,$iEnd - $i +1);
382 $i = $iEnd;
383 }
384 $sToken = str_replace($aReplace, $aSpecials,$sToken);
cfebb724 385 if ($sToken) $aTokens[] = $sToken;
14882b16 386 break;
387 case '"':
388 $iEnd = strpos($address,$cChar,$i+1);
0b4d4be7 389 if ($iEnd) {
390 // skip escaped quotes
391 $prev_char = $address{$iEnd-1};
392 while ($prev_char === '\\' && substr($address,$iEnd-2,2) !== '\\\\') {
393 $iEnd = strpos($address,$cChar,$iEnd+1);
394 if ($iEnd) {
395 $prev_char = $address{$iEnd-1};
396 } else {
397 $prev_char = false;
398 }
399 }
400 }
14882b16 401 if (!$iEnd) {
402 $sToken = substr($address,$i);
403 $i = $iCnt;
404 } else {
405 // also remove the surrounding quotes
406 $sToken = substr($address,$i+1,$iEnd - $i -1);
407 $i = $iEnd;
408 }
409 $sToken = str_replace($aReplace, $aSpecials,$sToken);
72956ab6 410 if ($sToken) $aTokens[] = $sToken;
14882b16 411 break;
412 case '(':
0b4d4be7 413 array_pop($aTokens); //remove inserted space
14882b16 414 $iEnd = strpos($address,')',$i);
415 if (!$iEnd) {
416 $sToken = substr($address,$i);
417 $i = $iCnt;
418 } else {
55243181 419 $iDepth = 1;
420 $iComment = $i;
421 while (($iDepth > 0) && (++$iComment < $iCnt)) {
422 $cCharComment = $address{$iComment};
423 switch($cCharComment) {
424 case '\\':
425 ++$iComment;
426 break;
427 case '(':
428 ++$iDepth;
429 break;
430 case ')':
431 --$iDepth;
432 break;
433 default:
434 break;
435 }
436 }
437 if ($iDepth == 0) {
438 $sToken = substr($address,$i,$iComment - $i +1);
439 $i = $iComment;
440 } else {
441 $sToken = substr($address,$i,$iEnd - $i + 1);
442 $i = $iEnd;
443 }
14882b16 444 }
0b4d4be7 445 // check the next token in case comments appear in the middle of email addresses
446 $prevToken = end($aTokens);
447 if (!in_array($prevToken,$aSpecials,true)) {
43c0e295 448 if ($i+1<strlen($address) && !in_array($address{$i+1},$aSpecials,true)) {
0b4d4be7 449 $iEnd = strpos($address,' ',$i+1);
450 if ($iEnd) {
451 $sNextToken = trim(substr($address,$i+1,$iEnd - $i -1));
452 $i = $iEnd-1;
453 } else {
a5ae4bc8 454 $sNextToken = trim(substr($address,$i+1));
0b4d4be7 455 $i = $iCnt;
456 }
457 // remove the token
458 array_pop($aTokens);
459 // create token and add it again
460 $sNewToken = $prevToken . $sNextToken;
1f0269d6 461 if($sNewToken) $aTokens[] = $sNewToken;
0b4d4be7 462 }
463 }
14882b16 464 $sToken = str_replace($aReplace, $aSpecials,$sToken);
cfebb724 465 if ($sToken) $aTokens[] = $sToken;
14882b16 466 break;
467 case ',':
0b4d4be7 468 case ':':
14882b16 469 case ';':
470 case ' ':
471 $aTokens[] = $cChar;
472 break;
473 default:
474 $iEnd = strpos($address,' ',$i+1);
475 if ($iEnd) {
476 $sToken = trim(substr($address,$i,$iEnd - $i));
477 $i = $iEnd-1;
478 } else {
479 $sToken = trim(substr($address,$i));
480 $i = $iCnt;
481 }
482 if ($sToken) $aTokens[] = $sToken;
483 }
484 ++$i;
485 }
486 return $aTokens;
487 }
0f459286 488
489 /**
490 * @param array $aStack
491 * @param array $aComment
492 * @param string $sEmail
493 * @param string $sGroup
494 * @return object AddressStructure object
495 */
14882b16 496 function createAddressObject(&$aStack,&$aComment,&$sEmail,$sGroup='') {
0b4d4be7 497 //$aStack=explode(' ',implode('',$aStack));
14882b16 498 if (!$sEmail) {
499 while (count($aStack) && !$sEmail) {
500 $sEmail = trim(array_pop($aStack));
501 }
502 }
503 if (count($aStack)) {
504 $sPersonal = trim(implode('',$aStack));
cfebb724 505 } else {
14882b16 506 $sPersonal = '';
507 }
508 if (!$sPersonal && count($aComment)) {
509 $sComment = trim(implode(' ',$aComment));
510 $sPersonal .= $sComment;
511 }
c6e83897 512 $oAddr = new AddressStructure();
14882b16 513 if ($sPersonal && substr($sPersonal,0,2) == '=?') {
514 $oAddr->personal = encodeHeader($sPersonal);
515 } else {
516 $oAddr->personal = $sPersonal;
517 }
0b4d4be7 518 // $oAddr->group = $sGroup;
14882b16 519 $iPosAt = strpos($sEmail,'@');
520 if ($iPosAt) {
521 $oAddr->mailbox = substr($sEmail, 0, $iPosAt);
522 $oAddr->host = substr($sEmail, $iPosAt+1);
523 } else {
524 $oAddr->mailbox = $sEmail;
525 $oAddr->host = false;
526 }
14882b16 527 $sEmail = '';
528 $aStack = $aComment = array();
529 return $oAddr;
530 }
531
0f459286 532 /**
533 * recursive function for parsing address strings and storing them in an address stucture object.
340d67c2 534 * personal name: encoded: =?charset?Q|B?string?=
535 * quoted: "string"
536 * normal: string
537 * email : <mailbox@host>
538 * : mailbox@host
539 * This function is also used for validating addresses returned from compose
14882b16 540 * That's also the reason that the function became a little bit huge
0f459286 541 * @param string $address
542 * @param boolean $ar return array instead of only the first element
543 * @param array $addr_ar (obsolete) array with parsed addresses
544 * @param string $group (obsolete)
545 * @param string $host default domainname in case of addresses without a domainname
546 * @param string $lookup (since) callback function for lookup of address strings which are probably nicks (without @)
547 * @return mixed array with AddressStructure objects or only one address_structure object.
e74ba378 548 */
14882b16 549 function parseAddress($address,$ar=false,$aAddress=array(),$sGroup='',$sHost='',$lookup=false) {
550 $aTokens = $this->getAddressTokens($address);
8d8da447 551 $sPersonal = $sEmail = $sGroup = '';
14882b16 552 $aStack = $aComment = array();
553 foreach ($aTokens as $sToken) {
554 $cChar = $sToken{0};
555 switch ($cChar)
340d67c2 556 {
557 case '=':
14882b16 558 case '"':
559 case ' ':
cfebb724 560 $aStack[] = $sToken;
340d67c2 561 break;
14882b16 562 case '(':
563 $aComment[] = substr($sToken,1,-1);
340d67c2 564 break;
3fcadedb 565 case ';':
14882b16 566 if ($sGroup) {
29f842a4 567 $aAddress[] = $this->createAddressObject($aStack,$aComment,$sEmail,$sGroup);
14882b16 568 $oAddr = end($aAddress);
7d38dfae 569 if(!$oAddr || ((isset($oAddr)) && !strlen($oAddr->mailbox) && !$oAddr->personal)) {
0b4d4be7 570 $sEmail = $sGroup . ':;';
cfebb724 571 }
0b4d4be7 572 $aAddress[] = $this->createAddressObject($aStack,$aComment,$sEmail,$sGroup);
14882b16 573 $sGroup = '';
574 $aStack = $aComment = array();
575 break;
340d67c2 576 }
14882b16 577 case ',':
578 $aAddress[] = $this->createAddressObject($aStack,$aComment,$sEmail,$sGroup);
579 break;
cfebb724 580 case ':':
29f842a4 581 $sGroup = trim(implode(' ',$aStack));
0b4d4be7 582 $sGroup = preg_replace('/\s+/',' ',$sGroup);
14882b16 583 $aStack = array();
584 break;
585 case '<':
586 $sEmail = trim(substr($sToken,1,-1));
587 break;
588 case '>':
589 /* skip */
cfebb724 590 break;
14882b16 591 default: $aStack[] = $sToken; break;
19d470aa 592 }
593 }
14882b16 594 /* now do the action again for the last address */
595 $aAddress[] = $this->createAddressObject($aStack,$aComment,$sEmail);
596 /* try to lookup the addresses in case of invalid email addresses */
597 $aProcessedAddress = array();
598 foreach ($aAddress as $oAddr) {
599 $aAddrBookAddress = array();
600 if (!$oAddr->host) {
601 $grouplookup = false;
340d67c2 602 if ($lookup) {
14882b16 603 $aAddr = call_user_func_array($lookup,array($oAddr->mailbox));
604 if (isset($aAddr['email'])) {
605 if (strpos($aAddr['email'],',')) {
606 $grouplookup = true;
607 $aAddrBookAddress = $this->parseAddress($aAddr['email'],true);
608 } else {
609 $iPosAt = strpos($aAddr['email'], '@');
5b3a1a3a 610 if ($iPosAt === FALSE) {
611 $oAddr->mailbox = $aAddr['email'];
da0135f6 612 $oAddr->host = FALSE;
5b3a1a3a 613 } else {
614 $oAddr->mailbox = substr($aAddr['email'], 0, $iPosAt);
615 $oAddr->host = substr($aAddr['email'], $iPosAt+1);
616 }
14882b16 617 if (isset($aAddr['name'])) {
618 $oAddr->personal = $aAddr['name'];
619 } else {
620 $oAddr->personal = encodeHeader($sPersonal);
621 }
622 }
623 }
340d67c2 624 }
7d38dfae 625 if (!$grouplookup && !strlen($oAddr->mailbox)) {
14882b16 626 $oAddr->mailbox = trim($sEmail);
7d38dfae 627 if ($sHost && strlen($oAddr->mailbox)) {
14882b16 628 $oAddr->host = $sHost;
340d67c2 629 }
8b53b4ba 630 } else if (!$grouplookup && !$oAddr->host) {
7d38dfae 631 if ($sHost && strlen($oAddr->mailbox)) {
8b53b4ba 632 $oAddr->host = $sHost;
633 }
cfebb724 634 }
14882b16 635 }
7d38dfae 636 if (!$aAddrBookAddress && strlen($oAddr->mailbox)) {
14882b16 637 $aProcessedAddress[] = $oAddr;
638 } else {
cfebb724 639 $aProcessedAddress = array_merge($aProcessedAddress,$aAddrBookAddress);
14882b16 640 }
340d67c2 641 }
cfebb724 642 if ($ar) {
14882b16 643 return $aProcessedAddress;
19d470aa 644 } else {
14882b16 645 return $aProcessedAddress[0];
19d470aa 646 }
cfebb724 647 }
19d470aa 648
bddb3448 649 /**
650 * Normalise the different Priority headers into a uniform value,
651 * namely that of the X-Priority header (1, 3, 5). Supports:
0f459286 652 * Priority, X-Priority, Importance.
bddb3448 653 * X-MS-Mail-Priority is not parsed because it always coincides
654 * with one of the other headers.
655 *
8b08e46d 656 * NOTE: this is actually a duplicate from the code in
657 * functions/imap_messages:parseFetch().
658 * I'm not sure if it's ok here to call
bddb3448 659 * that function?
ba17b6c7 660 * @param string $sValue literal priority name
0f459286 661 * @return integer
bddb3448 662 */
ba17b6c7 663 function parsePriority($sValue) {
664 // don't use function call inside array_shift.
c10512eb 665 $aValue = preg_split('/\s/',trim($sValue));
ba17b6c7 666 $value = strtolower(array_shift($aValue));
667
bddb3448 668 if ( is_numeric($value) ) {
669 return $value;
670 }
671 if ( $value == 'urgent' || $value == 'high' ) {
672 return 1;
673 } elseif ( $value == 'non-urgent' || $value == 'low' ) {
674 return 5;
675 }
676 // default is normal priority
677 return 3;
678 }
679
0f459286 680 /**
681 * @param string $value content type header
682 */
19d470aa 683 function parseContentType($value) {
684 $pos = strpos($value, ';');
685 $props = '';
686 if ($pos > 0) {
687 $type = trim(substr($value, 0, $pos));
38d6fba7 688 $props = trim(substr($value, $pos+1));
19d470aa 689 } else {
690 $type = $value;
691 }
692 $content_type = new ContentType($type);
693 if ($props) {
694 $properties = $this->parseProperties($props);
695 if (!isset($properties['charset'])) {
696 $properties['charset'] = 'us-ascii';
697 }
698 $content_type->properties = $this->parseProperties($props);
699 }
700 $this->content_type = $content_type;
701 }
cfebb724 702
0f459286 703 /**
704 * RFC2184
705 * @param array $aParameters
706 * @return array
707 */
cfebb724 708 function processParameters($aParameters) {
2ddf00ae 709 $aResults = array();
cfebb724 710 $aCharset = array();
711 // handle multiline parameters
2ddf00ae 712 foreach($aParameters as $key => $value) {
cfebb724 713 if ($iPos = strpos($key,'*')) {
714 $sKey = substr($key,0,$iPos);
715 if (!isset($aResults[$sKey])) {
716 $aResults[$sKey] = $value;
717 if (substr($key,-1) == '*') { // parameter contains language/charset info
718 $aCharset[] = $sKey;
719 }
720 } else {
721 $aResults[$sKey] .= $value;
722 }
723 } else {
724 $aResults[$key] = $value;
725 }
726 }
727 foreach ($aCharset as $key) {
728 $value = $aResults[$key];
729 // extract the charset & language
730 $charset = substr($value,0,strpos($value,"'"));
731 $value = substr($value,strlen($charset)+1);
732 $language = substr($value,0,strpos($value,"'"));
733 $value = substr($value,strlen($charset)+1);
0f459286 734 /* FIXME: What's the status of charset decode with language information ????
735 * Maybe language information contains only ascii text and charset_decode()
736 * only runs htmlspecialchars() on it. If it contains 8bit information, you
737 * get html encoded text in charset used by selected translation.
738 */
cfebb724 739 $value = charset_decode($charset,$value);
740 $aResults[$key] = $value;
2ddf00ae 741 }
cfebb724 742 return $aResults;
2ddf00ae 743 }
19d470aa 744
0f459286 745 /**
746 * @param string $value
747 * @return array
748 */
19d470aa 749 function parseProperties($value) {
750 $propArray = explode(';', $value);
751 $propResultArray = array();
752 foreach ($propArray as $prop) {
753 $prop = trim($prop);
754 $pos = strpos($prop, '=');
755 if ($pos > 0) {
756 $key = trim(substr($prop, 0, $pos));
757 $val = trim(substr($prop, $pos+1));
bbb92b4c 758 if (strlen($val) > 0 && $val{0} == '"') {
19d470aa 759 $val = substr($val, 1, -1);
760 }
761 $propResultArray[$key] = $val;
762 }
763 }
2ddf00ae 764 return $this->processParameters($propResultArray);
19d470aa 765 }
766
0f459286 767 /**
768 * Fills disposition object in rfc822Header object
769 * @param string $value
770 */
19d470aa 771 function parseDisposition($value) {
772 $pos = strpos($value, ';');
773 $props = '';
774 if ($pos > 0) {
775 $name = trim(substr($value, 0, $pos));
fc9269ec 776 $props = trim(substr($value, $pos+1));
19d470aa 777 } else {
778 $name = $value;
779 }
780 $props_a = $this->parseProperties($props);
781 $disp = new Disposition($name);
782 $disp->properties = $props_a;
783 $this->disposition = $disp;
784 }
785
0f459286 786 /**
787 * Fills mlist array keys in rfc822Header object
788 * @param string $field
789 * @param string $value
790 */
19d470aa 791 function mlist($field, $value) {
792 $res_a = array();
793 $value_a = explode(',', $value);
794 foreach ($value_a as $val) {
795 $val = trim($val);
796 if ($val{0} == '<') {
797 $val = substr($val, 1, -1);
798 }
799 if (substr($val, 0, 7) == 'mailto:') {
800 $res_a['mailto'] = substr($val, 7);
801 } else {
802 $res_a['href'] = $val;
803 }
804 }
805 $this->mlist[$field] = $res_a;
806 }
807
1a64a084 808 /**
809 * Parses the X-Spam-Status header
810 * @param string $value
811 */
812 function parseSpamStatus($value) {
813 // Header value looks like this:
814 // No, score=1.5 required=5.0 tests=MSGID_FROM_MTA_ID,NO_REAL_NAME,UPPERCASE_25_50 autolearn=disabled version=3.1.0-gr0
815
816 $spam_status = array();
817
818 if (preg_match ('/^(No|Yes),\s+score=(-?\d+\.\d+)\s+required=(-?\d+\.\d+)\s+tests=(.*?)\s+autolearn=(.*?)\s+version=(.+?)$/', $value, $matches)) {
819 // full header
820 $spam_status['bad_format'] = 0;
821 $spam_status['value'] = $matches[0];
822 // is_spam
823 if (isset($matches[1])
824 && strtolower($matches[1]) == 'yes') {
825 $spam_status['is_spam'] = true;
826 } else {
827 $spam_status['is_spam'] = false;
828 }
829
830 // score
831 $spam_status['score'] = $matches[2];
832
833 // required
834 $spam_status['required'] = $matches[3];
835
836 // tests
837 $tests = array();
838 $tests = explode(',', $matches[4]);
839 foreach ($tests as $test) {
840 $spam_status['tests'][] = trim($test);
841 }
842
843 // autolearn
844 $spam_status['autolearn'] = $matches[5];
845
846 // version
847 $spam_status['version'] = $matches[6];
848 } else {
849 $spam_status['bad_format'] = 1;
850 $spam_status['value'] = $value;
851 }
852 return $spam_status;
853 }
854
0f459286 855 /**
856 * function to get the address strings out of the header.
19d470aa 857 * example1: header->getAddr_s('to').
858 * example2: header->getAddr_s(array('to', 'cc', 'bcc'))
0f459286 859 * @param mixed $arr string or array of strings
860 * @param string $separator
861 * @param boolean $encoded (since 1.4.0) return encoded or plain text addresses
862 * @return string
19d470aa 863 */
f3052224 864 function getAddr_s($arr, $separator = ', ', $encoded=false) {
19d470aa 865 $s = '';
866
867 if (is_array($arr)) {
868 foreach($arr as $arg) {
2c9ecd11 869 if ($this->getAddr_s($arg, $separator, $encoded)) {
8d8da447 870 $s .= $separator;
19d470aa 871 }
872 }
873 $s = ($s ? substr($s, 2) : $s);
874 } else {
2c9ecd11 875 $addr = $this->{$arr};
19d470aa 876 if (is_array($addr)) {
877 foreach ($addr as $addr_o) {
878 if (is_object($addr_o)) {
2c9ecd11 879 if ($encoded) {
880 $s .= $addr_o->getEncodedAddress() . $separator;
881 } else {
882 $s .= $addr_o->getAddress() . $separator;
883 }
19d470aa 884 }
885 }
886 $s = substr($s, 0, -strlen($separator));
887 } else {
888 if (is_object($addr)) {
2c9ecd11 889 if ($encoded) {
890 $s .= $addr->getEncodedAddress();
891 } else {
892 $s .= $addr->getAddress();
893 }
19d470aa 894 }
895 }
896 }
897 return $s;
898 }
899
0f459286 900 /**
901 * function to get the array of addresses out of the header.
902 * @param mixed $arg string or array of strings
903 * @param array $excl_arr array of excluded email addresses
904 * @param array $arr array of added email addresses
905 * @return array
906 */
19d470aa 907 function getAddr_a($arg, $excl_arr = array(), $arr = array()) {
908 if (is_array($arg)) {
909 foreach($arg as $argument) {
910 $arr = $this->getAddr_a($argument, $excl_arr, $arr);
911 }
912 } else {
340d67c2 913 $addr = $this->{$arg};
19d470aa 914 if (is_array($addr)) {
915 foreach ($addr as $next_addr) {
916 if (is_object($next_addr)) {
917 if (isset($next_addr->host) && ($next_addr->host != '')) {
918 $email = $next_addr->mailbox . '@' . $next_addr->host;
919 } else {
920 $email = $next_addr->mailbox;
921 }
922 $email = strtolower($email);
923 if ($email && !isset($arr[$email]) && !isset($excl_arr[$email])) {
924 $arr[$email] = $next_addr->personal;
925 }
926 }
927 }
928 } else {
929 if (is_object($addr)) {
930 $email = $addr->mailbox;
931 $email .= (isset($addr->host) ? '@' . $addr->host : '');
932 $email = strtolower($email);
933 if ($email && !isset($arr[$email]) && !isset($excl_arr[$email])) {
934 $arr[$email] = $addr->personal;
935 }
936 }
937 }
938 }
939 return $arr;
940 }
cfebb724 941
0f459286 942 /**
8d2d85f5 943//FIXME: This needs some documentation (inside the function too)! Don't code w/out comments!
0f459286 944 * @param mixed $address array or string
945 * @param boolean $recurs
946 * @return mixed array, boolean
947 * @since 1.3.2
948 */
d0719411 949 function findAddress($address, $recurs = false) {
340d67c2 950 $result = false;
d0719411 951 if (is_array($address)) {
340d67c2 952 $i=0;
d0719411 953 foreach($address as $argument) {
954 $match = $this->findAddress($argument, true);
340d67c2 955 if ($match[1]) {
956 return $i;
957 } else {
958 if (count($match[0]) && !$result) {
959 $result = $i;
960 }
961 }
cfebb724 962 ++$i;
340d67c2 963 }
964 } else {
965 if (!is_array($this->cc)) $this->cc = array();
7c8a0b77 966 if (!is_array($this->to)) $this->to = array();
340d67c2 967 $srch_addr = $this->parseAddress($address);
968 $results = array();
969 foreach ($this->to as $to) {
8d2d85f5 970 if (strtolower($to->host) == strtolower($srch_addr->host)) {
971 if (strtolower($to->mailbox) == strtolower($srch_addr->mailbox)) {
340d67c2 972 $results[] = $srch_addr;
8d2d85f5 973 if (strtolower($to->personal) == strtolower($srch_addr->personal)) {
340d67c2 974 if ($recurs) {
975 return array($results, true);
976 } else {
977 return true;
978 }
979 }
980 }
981 }
d0719411 982 }
0f459286 983 foreach ($this->cc as $cc) {
8d2d85f5 984 if (strtolower($cc->host) == strtolower($srch_addr->host)) {
985 if (strtolower($cc->mailbox) == strtolower($srch_addr->mailbox)) {
340d67c2 986 $results[] = $srch_addr;
8d2d85f5 987 if (strtolower($cc->personal) == strtolower($srch_addr->personal)) {
340d67c2 988 if ($recurs) {
989 return array($results, true);
990 } else {
991 return true;
992 }
993 }
994 }
995 }
996 }
997 if ($recurs) {
998 return array($results, false);
999 } elseif (count($result)) {
1000 return true;
1001 } else {
1002 return false;
cfebb724 1003 }
340d67c2 1004 }
1465f80c 1005 //exit;
340d67c2 1006 return $result;
d0719411 1007 }
19d470aa 1008
0f459286 1009 /**
1010 * @param string $type0 media type
1011 * @param string $type1 media subtype
1012 * @return array media properties
1013 * @todo check use of media type arguments
1014 */
19d470aa 1015 function getContentType($type0, $type1) {
1016 $type0 = $this->content_type->type0;
1017 $type1 = $this->content_type->type1;
1018 return $this->content_type->properties;
1019 }
1020}