Added patch from seth randall to fix address group behaviour.
[squirrelmail.git] / class / mime / Rfc822Header.class.php
CommitLineData
19d470aa 1<?php
2
3/**
4 * Rfc822Header.class.php
5 *
76911253 6 * Copyright (c) 2003 The SquirrelMail Project Team
19d470aa 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This contains functions needed to handle mime messages.
10 *
11 * $Id$
12 */
13
14/*
15 * rdc822_header class
16 * input: header_string or array
17 */
18class Rfc822Header {
19 var $date = '',
20 $subject = '',
21 $from = array(),
22 $sender = '',
23 $reply_to = array(),
24 $to = array(),
25 $cc = array(),
26 $bcc = array(),
27 $in_reply_to = '',
28 $message_id = '',
340d67c2 29 $references = '',
19d470aa 30 $mime = false,
31 $content_type = '',
32 $disposition = '',
33 $xmailer = '',
34 $priority = 3,
35 $dnt = '',
f1232547 36 $encoding = '',
19d470aa 37 $mlist = array(),
38 $more_headers = array(); /* only needed for constructing headers
39 in smtp.php */
40 function parseHeader($hdr) {
41 if (is_array($hdr)) {
42 $hdr = implode('', $hdr);
43 }
19d470aa 44 /* First we unfold the header */
45 $hdr = trim(str_replace(array("\r\n\t", "\r\n "),array('', ''), $hdr));
46
47 /* Now we can make a new header array with */
48 /* each element representing a headerline */
49 $hdr = explode("\r\n" , $hdr);
50 foreach ($hdr as $line) {
51 $pos = strpos($line, ':');
52 if ($pos > 0) {
53 $field = substr($line, 0, $pos);
340d67c2 54 if (!strstr($field,' ')) { /* valid field */
55 $value = trim(substr($line, $pos+1));
56 $this->parseField($field, $value);
57 }
19d470aa 58 }
59 }
60 if ($this->content_type == '') {
61 $this->parseContentType('text/plain; charset=us-ascii');
62 }
63 }
64
65 function stripComments($value) {
66 $result = '';
19d470aa 67 $cnt = strlen($value);
68 for ($i = 0; $i < $cnt; ++$i) {
69 switch ($value{$i}) {
70 case '"':
71 $result .= '"';
72 while ((++$i < $cnt) && ($value{$i} != '"')) {
73 if ($value{$i} == '\\') {
74 $result .= '\\';
75 ++$i;
76 }
77 $result .= $value{$i};
78 }
79 $result .= $value{$i};
80 break;
81 case '(':
82 $depth = 1;
83 while (($depth > 0) && (++$i < $cnt)) {
84 switch($value{$i}) {
85 case '\\':
86 ++$i;
87 break;
88 case '(':
89 ++$depth;
90 break;
91 case ')':
92 --$depth;
93 break;
94 default:
95 break;
96 }
97 }
98 break;
99 default:
100 $result .= $value{$i};
101 break;
102 }
103 }
104 return $result;
105 }
106
107 function parseField($field, $value) {
108 $field = strtolower($field);
109 switch($field) {
110 case 'date':
340d67c2 111 $value = $this->stripComments($value);
19d470aa 112 $d = strtr($value, array(' ' => ' '));
113 $d = explode(' ', $d);
114 $this->date = getTimeStamp($d);
115 break;
116 case 'subject':
117 $this->subject = $value;
118 break;
119 case 'from':
120 $this->from = $this->parseAddress($value,true);
121 break;
122 case 'sender':
123 $this->sender = $this->parseAddress($value);
124 break;
125 case 'reply-to':
126 $this->reply_to = $this->parseAddress($value, true);
127 break;
128 case 'to':
129 $this->to = $this->parseAddress($value, true);
130 break;
131 case 'cc':
132 $this->cc = $this->parseAddress($value, true);
133 break;
134 case 'bcc':
135 $this->bcc = $this->parseAddress($value, true);
136 break;
137 case 'in-reply-to':
138 $this->in_reply_to = $value;
139 break;
140 case 'message-id':
340d67c2 141 $value = $this->stripComments($value);
19d470aa 142 $this->message_id = $value;
143 break;
340d67c2 144 case 'references':
145 $value = $this->stripComments($value);
146 $this->references = $value;
147 break;
148 case 'x-confirm-reading-to':
149 case 'return-receipt-to':
19d470aa 150 case 'disposition-notification-to':
340d67c2 151 $value = $this->stripComments($value);
19d470aa 152 $this->dnt = $this->parseAddress($value);
153 break;
154 case 'mime-version':
340d67c2 155 $value = $this->stripComments($value);
19d470aa 156 $value = str_replace(' ', '', $value);
157 $this->mime = ($value == '1.0' ? true : $this->mime);
158 break;
159 case 'content-type':
340d67c2 160 $value = $this->stripComments($value);
19d470aa 161 $this->parseContentType($value);
162 break;
163 case 'content-disposition':
340d67c2 164 $value = $this->stripComments($value);
19d470aa 165 $this->parseDisposition($value);
166 break;
167 case 'user-agent':
168 case 'x-mailer':
340d67c2 169 $this->xmailer = $value;
19d470aa 170 break;
171 case 'x-priority':
172 $this->priority = $value;
173 break;
174 case 'list-post':
340d67c2 175 $value = $this->stripComments($value);
19d470aa 176 $this->mlist('post', $value);
177 break;
178 case 'list-reply':
340d67c2 179 $value = $this->stripComments($value);
19d470aa 180 $this->mlist('reply', $value);
181 break;
182 case 'list-subscribe':
340d67c2 183 $value = $this->stripComments($value);
19d470aa 184 $this->mlist('subscribe', $value);
185 break;
186 case 'list-unsubscribe':
340d67c2 187 $value = $this->stripComments($value);
19d470aa 188 $this->mlist('unsubscribe', $value);
189 break;
190 case 'list-archive':
340d67c2 191 $value = $this->stripComments($value);
19d470aa 192 $this->mlist('archive', $value);
193 break;
194 case 'list-owner':
340d67c2 195 $value = $this->stripComments($value);
19d470aa 196 $this->mlist('owner', $value);
197 break;
198 case 'list-help':
340d67c2 199 $value = $this->stripComments($value);
19d470aa 200 $this->mlist('help', $value);
201 break;
ba4d5a32 202 case 'list-id':
203 $value = $this->stripComments($value);
204 $this->mlist('id', $value);
205 break;
19d470aa 206 default:
207 break;
208 }
209 }
14882b16 210
211 function getAddressTokens($address) {
212 $aTokens = array();
213 $aAddress = array();
14882b16 214 $aSpecials = array('(' ,'<' ,',' ,';' ,':');
215 $aReplace = array(' (',' <',' ,',' ;',' :');
216 $address = str_replace($aSpecials,$aReplace,$address);
55243181 217 $iCnt = strlen($address);
14882b16 218 $i = 0;
219 while ($i < $iCnt) {
220 $cChar = $address{$i};
221 switch($cChar)
222 {
223 case '<':
224 $iEnd = strpos($address,'>',$i+1);
225 if (!$iEnd) {
226 $sToken = substr($address,$i);
227 $i = $iCnt;
228 } else {
229 $sToken = substr($address,$i,$iEnd - $i +1);
230 $i = $iEnd;
231 }
232 $sToken = str_replace($aReplace, $aSpecials,$sToken);
233 $aTokens[] = $sToken;
234 break;
235 case '"':
236 $iEnd = strpos($address,$cChar,$i+1);
0b4d4be7 237 if ($iEnd) {
238 // skip escaped quotes
239 $prev_char = $address{$iEnd-1};
240 while ($prev_char === '\\' && substr($address,$iEnd-2,2) !== '\\\\') {
241 $iEnd = strpos($address,$cChar,$iEnd+1);
242 if ($iEnd) {
243 $prev_char = $address{$iEnd-1};
244 } else {
245 $prev_char = false;
246 }
247 }
248 }
14882b16 249 if (!$iEnd) {
250 $sToken = substr($address,$i);
251 $i = $iCnt;
252 } else {
253 // also remove the surrounding quotes
254 $sToken = substr($address,$i+1,$iEnd - $i -1);
255 $i = $iEnd;
256 }
257 $sToken = str_replace($aReplace, $aSpecials,$sToken);
72956ab6 258 if ($sToken) $aTokens[] = $sToken;
14882b16 259 break;
260 case '(':
0b4d4be7 261 array_pop($aTokens); //remove inserted space
14882b16 262 $iEnd = strpos($address,')',$i);
263 if (!$iEnd) {
264 $sToken = substr($address,$i);
265 $i = $iCnt;
266 } else {
55243181 267 $iDepth = 1;
268 $iComment = $i;
269 while (($iDepth > 0) && (++$iComment < $iCnt)) {
270 $cCharComment = $address{$iComment};
271 switch($cCharComment) {
272 case '\\':
273 ++$iComment;
274 break;
275 case '(':
276 ++$iDepth;
277 break;
278 case ')':
279 --$iDepth;
280 break;
281 default:
282 break;
283 }
284 }
285 if ($iDepth == 0) {
286 $sToken = substr($address,$i,$iComment - $i +1);
287 $i = $iComment;
288 } else {
289 $sToken = substr($address,$i,$iEnd - $i + 1);
290 $i = $iEnd;
291 }
14882b16 292 }
0b4d4be7 293 // check the next token in case comments appear in the middle of email addresses
294 $prevToken = end($aTokens);
295 if (!in_array($prevToken,$aSpecials,true)) {
296 if (isset($address{$i+1}) && !in_array($address{$i+1},$aSpecials,true)) {
297 $iEnd = strpos($address,' ',$i+1);
298 if ($iEnd) {
299 $sNextToken = trim(substr($address,$i+1,$iEnd - $i -1));
300 $i = $iEnd-1;
301 } else {
302 $sToken = trim(substr($address,$i+1));
303 $i = $iCnt;
304 }
305 // remove the token
306 array_pop($aTokens);
307 // create token and add it again
308 $sNewToken = $prevToken . $sNextToken;
309 $aTokens[] = $sNewToken;
310 }
311 }
14882b16 312 $sToken = str_replace($aReplace, $aSpecials,$sToken);
313 $aTokens[] = $sToken;
314 break;
315 case ',':
0b4d4be7 316 case ':':
14882b16 317 case ';':
318 case ' ':
319 $aTokens[] = $cChar;
320 break;
321 default:
322 $iEnd = strpos($address,' ',$i+1);
323 if ($iEnd) {
324 $sToken = trim(substr($address,$i,$iEnd - $i));
325 $i = $iEnd-1;
326 } else {
327 $sToken = trim(substr($address,$i));
328 $i = $iCnt;
329 }
330 if ($sToken) $aTokens[] = $sToken;
331 }
332 ++$i;
333 }
334 return $aTokens;
335 }
336 function createAddressObject(&$aStack,&$aComment,&$sEmail,$sGroup='') {
0b4d4be7 337 //$aStack=explode(' ',implode('',$aStack));
14882b16 338 if (!$sEmail) {
339 while (count($aStack) && !$sEmail) {
340 $sEmail = trim(array_pop($aStack));
341 }
342 }
343 if (count($aStack)) {
344 $sPersonal = trim(implode('',$aStack));
345 } else {
346 $sPersonal = '';
347 }
348 if (!$sPersonal && count($aComment)) {
349 $sComment = trim(implode(' ',$aComment));
350 $sPersonal .= $sComment;
351 }
352 $oAddr =& new AddressStructure();
353 if ($sPersonal && substr($sPersonal,0,2) == '=?') {
354 $oAddr->personal = encodeHeader($sPersonal);
355 } else {
356 $oAddr->personal = $sPersonal;
357 }
0b4d4be7 358 // $oAddr->group = $sGroup;
14882b16 359 $iPosAt = strpos($sEmail,'@');
360 if ($iPosAt) {
361 $oAddr->mailbox = substr($sEmail, 0, $iPosAt);
362 $oAddr->host = substr($sEmail, $iPosAt+1);
363 } else {
364 $oAddr->mailbox = $sEmail;
365 $oAddr->host = false;
366 }
14882b16 367 $sEmail = '';
368 $aStack = $aComment = array();
369 return $oAddr;
370 }
371
e74ba378 372 /*
373 * parseAddress: recursive function for parsing address strings and store
374 * them in an address stucture object.
375 * input: $address = string
376 * $ar = boolean (return array instead of only the
377 * first element)
14882b16 378 * $addr_ar = array with parsed addresses // obsolete
379 * $group = string // obsolete
e74ba378 380 * $host = string (default domainname in case of
381 * addresses without a domainname)
382 * $lookup = callback function (for lookup address
383 * strings which are probably nicks
384 * (without @ ) )
385 * output: array with addressstructure objects or only one
386 * address_structure object.
340d67c2 387 * personal name: encoded: =?charset?Q|B?string?=
388 * quoted: "string"
389 * normal: string
390 * email : <mailbox@host>
391 * : mailbox@host
392 * This function is also used for validating addresses returned from compose
14882b16 393 * That's also the reason that the function became a little bit huge
e74ba378 394 */
340d67c2 395
14882b16 396 function parseAddress($address,$ar=false,$aAddress=array(),$sGroup='',$sHost='',$lookup=false) {
397 $aTokens = $this->getAddressTokens($address);
398 $sPersonal = $sEmail = $sComment = $sGroup = '';
399 $aStack = $aComment = array();
400 foreach ($aTokens as $sToken) {
401 $cChar = $sToken{0};
402 switch ($cChar)
340d67c2 403 {
404 case '=':
14882b16 405 case '"':
406 case ' ':
407 $aStack[] = $sToken;
340d67c2 408 break;
14882b16 409 case '(':
410 $aComment[] = substr($sToken,1,-1);
340d67c2 411 break;
3fcadedb 412 case ';':
14882b16 413 if ($sGroup) {
414 $oAddr = end($aAddress);
0b4d4be7 415 if(!$oAddr || ((isset($oAddr)) && !$oAddr->mailbox && !$oAddr->personal)) {
416 $sEmail = $sGroup . ':;';
417 }
418 $aAddress[] = $this->createAddressObject($aStack,$aComment,$sEmail,$sGroup);
14882b16 419 $sGroup = '';
420 $aStack = $aComment = array();
421 break;
340d67c2 422 }
14882b16 423 case ',':
424 $aAddress[] = $this->createAddressObject($aStack,$aComment,$sEmail,$sGroup);
425 break;
426 case ':':
0b4d4be7 427 $sGroup = trim(implode(' ',$aStack)); break;
428 $sGroup = preg_replace('/\s+/',' ',$sGroup);
14882b16 429 $aStack = array();
430 break;
431 case '<':
432 $sEmail = trim(substr($sToken,1,-1));
433 break;
434 case '>':
435 /* skip */
436 break;
437 default: $aStack[] = $sToken; break;
19d470aa 438 }
439 }
14882b16 440 /* now do the action again for the last address */
441 $aAddress[] = $this->createAddressObject($aStack,$aComment,$sEmail);
442 /* try to lookup the addresses in case of invalid email addresses */
443 $aProcessedAddress = array();
444 foreach ($aAddress as $oAddr) {
445 $aAddrBookAddress = array();
446 if (!$oAddr->host) {
447 $grouplookup = false;
340d67c2 448 if ($lookup) {
14882b16 449 $aAddr = call_user_func_array($lookup,array($oAddr->mailbox));
450 if (isset($aAddr['email'])) {
451 if (strpos($aAddr['email'],',')) {
452 $grouplookup = true;
453 $aAddrBookAddress = $this->parseAddress($aAddr['email'],true);
454 } else {
455 $iPosAt = strpos($aAddr['email'], '@');
456 $oAddr->mailbox = substr($aAddr['email'], 0, $iPosAt);
457 $oAddr->host = substr($aAddr['email'], $iPosAt+1);
458 if (isset($aAddr['name'])) {
459 $oAddr->personal = $aAddr['name'];
460 } else {
461 $oAddr->personal = encodeHeader($sPersonal);
462 }
463 }
464 }
340d67c2 465 }
14882b16 466 if (!$grouplookup && !$oAddr->mailbox) {
467 $oAddr->mailbox = trim($sEmail);
468 if ($sHost && $oAddr->mailbox) {
469 $oAddr->host = $sHost;
340d67c2 470 }
471 }
14882b16 472 }
473 if (!$aAddrBookAddress && $oAddr->mailbox) {
474 $aProcessedAddress[] = $oAddr;
475 } else {
476 $aProcessedAddress = array_merge($aProcessedAddress,$aAddrBookAddress);
477 }
340d67c2 478 }
14882b16 479 if ($ar) {
480 return $aProcessedAddress;
19d470aa 481 } else {
14882b16 482 return $aProcessedAddress[0];
19d470aa 483 }
14882b16 484 }
19d470aa 485
486 function parseContentType($value) {
487 $pos = strpos($value, ';');
488 $props = '';
489 if ($pos > 0) {
490 $type = trim(substr($value, 0, $pos));
38d6fba7 491 $props = trim(substr($value, $pos+1));
19d470aa 492 } else {
493 $type = $value;
494 }
495 $content_type = new ContentType($type);
496 if ($props) {
497 $properties = $this->parseProperties($props);
498 if (!isset($properties['charset'])) {
499 $properties['charset'] = 'us-ascii';
500 }
501 $content_type->properties = $this->parseProperties($props);
502 }
503 $this->content_type = $content_type;
504 }
505
506 function parseProperties($value) {
507 $propArray = explode(';', $value);
508 $propResultArray = array();
509 foreach ($propArray as $prop) {
510 $prop = trim($prop);
511 $pos = strpos($prop, '=');
512 if ($pos > 0) {
513 $key = trim(substr($prop, 0, $pos));
514 $val = trim(substr($prop, $pos+1));
515 if ($val{0} == '"') {
516 $val = substr($val, 1, -1);
517 }
518 $propResultArray[$key] = $val;
519 }
520 }
521 return $propResultArray;
522 }
523
524 function parseDisposition($value) {
525 $pos = strpos($value, ';');
526 $props = '';
527 if ($pos > 0) {
528 $name = trim(substr($value, 0, $pos));
fc9269ec 529 $props = trim(substr($value, $pos+1));
19d470aa 530 } else {
531 $name = $value;
532 }
533 $props_a = $this->parseProperties($props);
534 $disp = new Disposition($name);
535 $disp->properties = $props_a;
536 $this->disposition = $disp;
537 }
538
539 function mlist($field, $value) {
540 $res_a = array();
541 $value_a = explode(',', $value);
542 foreach ($value_a as $val) {
543 $val = trim($val);
544 if ($val{0} == '<') {
545 $val = substr($val, 1, -1);
546 }
547 if (substr($val, 0, 7) == 'mailto:') {
548 $res_a['mailto'] = substr($val, 7);
549 } else {
550 $res_a['href'] = $val;
551 }
552 }
553 $this->mlist[$field] = $res_a;
554 }
555
556 /*
557 * function to get the addres strings out of the header.
558 * Arguments: string or array of strings !
559 * example1: header->getAddr_s('to').
560 * example2: header->getAddr_s(array('to', 'cc', 'bcc'))
561 */
2c9ecd11 562 function getAddr_s($arr, $separator = ',',$encoded=false) {
19d470aa 563 $s = '';
564
565 if (is_array($arr)) {
566 foreach($arr as $arg) {
2c9ecd11 567 if ($this->getAddr_s($arg, $separator, $encoded)) {
19d470aa 568 $s .= $separator . $result;
569 }
570 }
571 $s = ($s ? substr($s, 2) : $s);
572 } else {
2c9ecd11 573 $addr = $this->{$arr};
19d470aa 574 if (is_array($addr)) {
575 foreach ($addr as $addr_o) {
576 if (is_object($addr_o)) {
2c9ecd11 577 if ($encoded) {
578 $s .= $addr_o->getEncodedAddress() . $separator;
579 } else {
580 $s .= $addr_o->getAddress() . $separator;
581 }
19d470aa 582 }
583 }
584 $s = substr($s, 0, -strlen($separator));
585 } else {
586 if (is_object($addr)) {
2c9ecd11 587 if ($encoded) {
588 $s .= $addr->getEncodedAddress();
589 } else {
590 $s .= $addr->getAddress();
591 }
19d470aa 592 }
593 }
594 }
595 return $s;
596 }
597
598 function getAddr_a($arg, $excl_arr = array(), $arr = array()) {
599 if (is_array($arg)) {
600 foreach($arg as $argument) {
601 $arr = $this->getAddr_a($argument, $excl_arr, $arr);
602 }
603 } else {
340d67c2 604 $addr = $this->{$arg};
19d470aa 605 if (is_array($addr)) {
606 foreach ($addr as $next_addr) {
607 if (is_object($next_addr)) {
608 if (isset($next_addr->host) && ($next_addr->host != '')) {
609 $email = $next_addr->mailbox . '@' . $next_addr->host;
610 } else {
611 $email = $next_addr->mailbox;
612 }
613 $email = strtolower($email);
614 if ($email && !isset($arr[$email]) && !isset($excl_arr[$email])) {
615 $arr[$email] = $next_addr->personal;
616 }
617 }
618 }
619 } else {
620 if (is_object($addr)) {
621 $email = $addr->mailbox;
622 $email .= (isset($addr->host) ? '@' . $addr->host : '');
623 $email = strtolower($email);
624 if ($email && !isset($arr[$email]) && !isset($excl_arr[$email])) {
625 $arr[$email] = $addr->personal;
626 }
627 }
628 }
629 }
630 return $arr;
631 }
d0719411 632
633 function findAddress($address, $recurs = false) {
340d67c2 634 $result = false;
d0719411 635 if (is_array($address)) {
340d67c2 636 $i=0;
d0719411 637 foreach($address as $argument) {
638 $match = $this->findAddress($argument, true);
340d67c2 639 $last = end($match);
640 if ($match[1]) {
641 return $i;
642 } else {
643 if (count($match[0]) && !$result) {
644 $result = $i;
645 }
646 }
647 ++$i;
648 }
649 } else {
650 if (!is_array($this->cc)) $this->cc = array();
651 $srch_addr = $this->parseAddress($address);
652 $results = array();
653 foreach ($this->to as $to) {
654 if ($to->host == $srch_addr->host) {
655 if ($to->mailbox == $srch_addr->mailbox) {
656 $results[] = $srch_addr;
657 if ($to->personal == $srch_addr->personal) {
658 if ($recurs) {
659 return array($results, true);
660 } else {
661 return true;
662 }
663 }
664 }
665 }
d0719411 666 }
340d67c2 667 foreach ($this->cc as $cc) {
668 if ($cc->host == $srch_addr->host) {
669 if ($cc->mailbox == $srch_addr->mailbox) {
670 $results[] = $srch_addr;
671 if ($cc->personal == $srch_addr->personal) {
672 if ($recurs) {
673 return array($results, true);
674 } else {
675 return true;
676 }
677 }
678 }
679 }
680 }
681 if ($recurs) {
682 return array($results, false);
683 } elseif (count($result)) {
684 return true;
685 } else {
686 return false;
687 }
688 }
1465f80c 689 //exit;
340d67c2 690 return $result;
d0719411 691 }
19d470aa 692
693 function getContentType($type0, $type1) {
694 $type0 = $this->content_type->type0;
695 $type1 = $this->content_type->type1;
696 return $this->content_type->properties;
697 }
698}
699
700?>