123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756 |
- <?php
- /**
- * Rfc822Header.class.php
- *
- * Copyright (c) 2003-2004 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
- * This contains functions needed to handle mime messages.
- *
- * @version $Id$
- * @package squirrelmail
- */
- /**
- * input: header_string or array
- * @package squirrelmail
- */
- class Rfc822Header {
- var $date = -1,
- $subject = '',
- $from = array(),
- $sender = '',
- $reply_to = array(),
- $mail_followup_to = array(),
- $to = array(),
- $cc = array(),
- $bcc = array(),
- $in_reply_to = '',
- $message_id = '',
- $references = '',
- $mime = false,
- $content_type = '',
- $disposition = '',
- $xmailer = '',
- $priority = 3,
- $dnt = '',
- $encoding = '',
- $content_id = '',
- $content_desc = '',
- $mlist = array(),
- $more_headers = array(); /* only needed for constructing headers
- in smtp.php */
- function parseHeader($hdr) {
- if (is_array($hdr)) {
- $hdr = implode('', $hdr);
- }
- /* First we replace \r\n by \n and unfold the header */
- $hdr = trim(str_replace(array("\r\n", "\n\t", "\n "),array("\n", ' ', ' '), $hdr));
- /* Now we can make a new header array with */
- /* each element representing a headerline */
- $hdr = explode("\n" , $hdr);
- foreach ($hdr as $line) {
- $pos = strpos($line, ':');
- if ($pos > 0) {
- $field = substr($line, 0, $pos);
- if (!strstr($field,' ')) { /* valid field */
- $value = trim(substr($line, $pos+1));
- $this->parseField($field, $value);
- }
- }
- }
- if ($this->content_type == '') {
- $this->parseContentType('text/plain; charset=us-ascii');
- }
- }
- function stripComments($value) {
- $result = '';
- $cnt = strlen($value);
- for ($i = 0; $i < $cnt; ++$i) {
- switch ($value{$i}) {
- case '"':
- $result .= '"';
- while ((++$i < $cnt) && ($value{$i} != '"')) {
- if ($value{$i} == '\\') {
- $result .= '\\';
- ++$i;
- }
- $result .= $value{$i};
- }
- $result .= $value{$i};
- break;
- case '(':
- $depth = 1;
- while (($depth > 0) && (++$i < $cnt)) {
- switch($value{$i}) {
- case '\\':
- ++$i;
- break;
- case '(':
- ++$depth;
- break;
- case ')':
- --$depth;
- break;
- default:
- break;
- }
- }
- break;
- default:
- $result .= $value{$i};
- break;
- }
- }
- return $result;
- }
- function parseField($field, $value) {
- $field = strtolower($field);
- switch($field) {
- case 'date':
- $value = $this->stripComments($value);
- $d = strtr($value, array(' ' => ' '));
- $d = explode(' ', $d);
- $this->date = getTimeStamp($d);
- break;
- case 'subject':
- $this->subject = $value;
- break;
- case 'from':
- $this->from = $this->parseAddress($value,true);
- break;
- case 'sender':
- $this->sender = $this->parseAddress($value);
- break;
- case 'reply-to':
- $this->reply_to = $this->parseAddress($value, true);
- break;
- case 'mail-followup-to':
- $this->mail_followup_to = $this->parseAddress($value, true);
- break;
- case 'to':
- $this->to = $this->parseAddress($value, true);
- break;
- case 'cc':
- $this->cc = $this->parseAddress($value, true);
- break;
- case 'bcc':
- $this->bcc = $this->parseAddress($value, true);
- break;
- case 'in-reply-to':
- $this->in_reply_to = $value;
- break;
- case 'message-id':
- $value = $this->stripComments($value);
- $this->message_id = $value;
- break;
- case 'references':
- $value = $this->stripComments($value);
- $this->references = $value;
- break;
- case 'x-confirm-reading-to':
- case 'return-receipt-to':
- case 'disposition-notification-to':
- $value = $this->stripComments($value);
- $this->dnt = $this->parseAddress($value);
- break;
- case 'mime-version':
- $value = $this->stripComments($value);
- $value = str_replace(' ', '', $value);
- $this->mime = ($value == '1.0' ? true : $this->mime);
- break;
- case 'content-type':
- $value = $this->stripComments($value);
- $this->parseContentType($value);
- break;
- case 'content-disposition':
- $value = $this->stripComments($value);
- $this->parseDisposition($value);
- break;
- case 'content-transfer-encoding':
- $this->encoding = $value;
- break;
- case 'content-description':
- $this->content_desc = $value;
- break;
- case 'content-id':
- $value = $this->stripComments($value);
- $this->content_id = $value;
- break;
- case 'user-agent':
- case 'x-mailer':
- $this->xmailer = $value;
- break;
- case 'x-priority':
- $this->priority = $value;
- break;
- case 'list-post':
- $value = $this->stripComments($value);
- $this->mlist('post', $value);
- break;
- case 'list-reply':
- $value = $this->stripComments($value);
- $this->mlist('reply', $value);
- break;
- case 'list-subscribe':
- $value = $this->stripComments($value);
- $this->mlist('subscribe', $value);
- break;
- case 'list-unsubscribe':
- $value = $this->stripComments($value);
- $this->mlist('unsubscribe', $value);
- break;
- case 'list-archive':
- $value = $this->stripComments($value);
- $this->mlist('archive', $value);
- break;
- case 'list-owner':
- $value = $this->stripComments($value);
- $this->mlist('owner', $value);
- break;
- case 'list-help':
- $value = $this->stripComments($value);
- $this->mlist('help', $value);
- break;
- case 'list-id':
- $value = $this->stripComments($value);
- $this->mlist('id', $value);
- break;
- default:
- break;
- }
- }
- function getAddressTokens($address) {
- $aTokens = array();
- $aAddress = array();
- $aSpecials = array('(' ,'<' ,',' ,';' ,':');
- $aReplace = array(' (',' <',' ,',' ;',' :');
- $address = str_replace($aSpecials,$aReplace,$address);
- $iCnt = strlen($address);
- $i = 0;
- while ($i < $iCnt) {
- $cChar = $address{$i};
- switch($cChar)
- {
- case '<':
- $iEnd = strpos($address,'>',$i+1);
- if (!$iEnd) {
- $sToken = substr($address,$i);
- $i = $iCnt;
- } else {
- $sToken = substr($address,$i,$iEnd - $i +1);
- $i = $iEnd;
- }
- $sToken = str_replace($aReplace, $aSpecials,$sToken);
- if ($sToken) $aTokens[] = $sToken;
- break;
- case '"':
- $iEnd = strpos($address,$cChar,$i+1);
- if ($iEnd) {
- // skip escaped quotes
- $prev_char = $address{$iEnd-1};
- while ($prev_char === '\\' && substr($address,$iEnd-2,2) !== '\\\\') {
- $iEnd = strpos($address,$cChar,$iEnd+1);
- if ($iEnd) {
- $prev_char = $address{$iEnd-1};
- } else {
- $prev_char = false;
- }
- }
- }
- if (!$iEnd) {
- $sToken = substr($address,$i);
- $i = $iCnt;
- } else {
- // also remove the surrounding quotes
- $sToken = substr($address,$i+1,$iEnd - $i -1);
- $i = $iEnd;
- }
- $sToken = str_replace($aReplace, $aSpecials,$sToken);
- if ($sToken) $aTokens[] = $sToken;
- break;
- case '(':
- array_pop($aTokens); //remove inserted space
- $iEnd = strpos($address,')',$i);
- if (!$iEnd) {
- $sToken = substr($address,$i);
- $i = $iCnt;
- } else {
- $iDepth = 1;
- $iComment = $i;
- while (($iDepth > 0) && (++$iComment < $iCnt)) {
- $cCharComment = $address{$iComment};
- switch($cCharComment) {
- case '\\':
- ++$iComment;
- break;
- case '(':
- ++$iDepth;
- break;
- case ')':
- --$iDepth;
- break;
- default:
- break;
- }
- }
- if ($iDepth == 0) {
- $sToken = substr($address,$i,$iComment - $i +1);
- $i = $iComment;
- } else {
- $sToken = substr($address,$i,$iEnd - $i + 1);
- $i = $iEnd;
- }
- }
- // check the next token in case comments appear in the middle of email addresses
- $prevToken = end($aTokens);
- if (!in_array($prevToken,$aSpecials,true)) {
- if ($i+1<strlen($address) && !in_array($address{$i+1},$aSpecials,true)) {
- $iEnd = strpos($address,' ',$i+1);
- if ($iEnd) {
- $sNextToken = trim(substr($address,$i+1,$iEnd - $i -1));
- $i = $iEnd-1;
- } else {
- $sNextToken = trim(substr($address,$i+1));
- $i = $iCnt;
- }
- // remove the token
- array_pop($aTokens);
- // create token and add it again
- $sNewToken = $prevToken . $sNextToken;
- if($sNewToken) $aTokens[] = $sNewToken;
- }
- }
- $sToken = str_replace($aReplace, $aSpecials,$sToken);
- if ($sToken) $aTokens[] = $sToken;
- break;
- case ',':
- case ':':
- case ';':
- case ' ':
- $aTokens[] = $cChar;
- break;
- default:
- $iEnd = strpos($address,' ',$i+1);
- if ($iEnd) {
- $sToken = trim(substr($address,$i,$iEnd - $i));
- $i = $iEnd-1;
- } else {
- $sToken = trim(substr($address,$i));
- $i = $iCnt;
- }
- if ($sToken) $aTokens[] = $sToken;
- }
- ++$i;
- }
- return $aTokens;
- }
- function createAddressObject(&$aStack,&$aComment,&$sEmail,$sGroup='') {
- //$aStack=explode(' ',implode('',$aStack));
- if (!$sEmail) {
- while (count($aStack) && !$sEmail) {
- $sEmail = trim(array_pop($aStack));
- }
- }
- if (count($aStack)) {
- $sPersonal = trim(implode('',$aStack));
- } else {
- $sPersonal = '';
- }
- if (!$sPersonal && count($aComment)) {
- $sComment = trim(implode(' ',$aComment));
- $sPersonal .= $sComment;
- }
- $oAddr =& new AddressStructure();
- if ($sPersonal && substr($sPersonal,0,2) == '=?') {
- $oAddr->personal = encodeHeader($sPersonal);
- } else {
- $oAddr->personal = $sPersonal;
- }
- // $oAddr->group = $sGroup;
- $iPosAt = strpos($sEmail,'@');
- if ($iPosAt) {
- $oAddr->mailbox = substr($sEmail, 0, $iPosAt);
- $oAddr->host = substr($sEmail, $iPosAt+1);
- } else {
- $oAddr->mailbox = $sEmail;
- $oAddr->host = false;
- }
- $sEmail = '';
- $aStack = $aComment = array();
- return $oAddr;
- }
- /*
- * parseAddress: recursive function for parsing address strings and store
- * them in an address stucture object.
- * input: $address = string
- * $ar = boolean (return array instead of only the
- * first element)
- * $addr_ar = array with parsed addresses // obsolete
- * $group = string // obsolete
- * $host = string (default domainname in case of
- * addresses without a domainname)
- * $lookup = callback function (for lookup address
- * strings which are probably nicks
- * (without @ ) )
- * output: array with addressstructure objects or only one
- * address_structure object.
- * personal name: encoded: =?charset?Q|B?string?=
- * quoted: "string"
- * normal: string
- * email : <mailbox@host>
- * : mailbox@host
- * This function is also used for validating addresses returned from compose
- * That's also the reason that the function became a little bit huge
- */
- function parseAddress($address,$ar=false,$aAddress=array(),$sGroup='',$sHost='',$lookup=false) {
- $aTokens = $this->getAddressTokens($address);
- $sPersonal = $sEmail = $sComment = $sGroup = '';
- $aStack = $aComment = array();
- foreach ($aTokens as $sToken) {
- $cChar = $sToken{0};
- switch ($cChar)
- {
- case '=':
- case '"':
- case ' ':
- $aStack[] = $sToken;
- break;
- case '(':
- $aComment[] = substr($sToken,1,-1);
- break;
- case ';':
- if ($sGroup) {
- $aAddress[] = $this->createAddressObject($aStack,$aComment,$sEmail,$sGroup);
- $oAddr = end($aAddress);
- if(!$oAddr || ((isset($oAddr)) && !$oAddr->mailbox && !$oAddr->personal)) {
- $sEmail = $sGroup . ':;';
- }
- $aAddress[] = $this->createAddressObject($aStack,$aComment,$sEmail,$sGroup);
- $sGroup = '';
- $aStack = $aComment = array();
- break;
- }
- case ',':
- $aAddress[] = $this->createAddressObject($aStack,$aComment,$sEmail,$sGroup);
- break;
- case ':':
- $sGroup = trim(implode(' ',$aStack));
- $sGroup = preg_replace('/\s+/',' ',$sGroup);
- $aStack = array();
- break;
- case '<':
- $sEmail = trim(substr($sToken,1,-1));
- break;
- case '>':
- /* skip */
- break;
- default: $aStack[] = $sToken; break;
- }
- }
- /* now do the action again for the last address */
- $aAddress[] = $this->createAddressObject($aStack,$aComment,$sEmail);
- /* try to lookup the addresses in case of invalid email addresses */
- $aProcessedAddress = array();
- foreach ($aAddress as $oAddr) {
- $aAddrBookAddress = array();
- if (!$oAddr->host) {
- $grouplookup = false;
- if ($lookup) {
- $aAddr = call_user_func_array($lookup,array($oAddr->mailbox));
- if (isset($aAddr['email'])) {
- if (strpos($aAddr['email'],',')) {
- $grouplookup = true;
- $aAddrBookAddress = $this->parseAddress($aAddr['email'],true);
- } else {
- $iPosAt = strpos($aAddr['email'], '@');
- $oAddr->mailbox = substr($aAddr['email'], 0, $iPosAt);
- $oAddr->host = substr($aAddr['email'], $iPosAt+1);
- if (isset($aAddr['name'])) {
- $oAddr->personal = $aAddr['name'];
- } else {
- $oAddr->personal = encodeHeader($sPersonal);
- }
- }
- }
- }
- if (!$grouplookup && !$oAddr->mailbox) {
- $oAddr->mailbox = trim($sEmail);
- if ($sHost && $oAddr->mailbox) {
- $oAddr->host = $sHost;
- }
- } else if (!$grouplookup && !$oAddr->host) {
- if ($sHost && $oAddr->mailbox) {
- $oAddr->host = $sHost;
- }
- }
- }
- if (!$aAddrBookAddress && $oAddr->mailbox) {
- $aProcessedAddress[] = $oAddr;
- } else {
- $aProcessedAddress = array_merge($aProcessedAddress,$aAddrBookAddress);
- }
- }
- if ($ar) {
- return $aProcessedAddress;
- } else {
- return $aProcessedAddress[0];
- }
- }
- function parseContentType($value) {
- $pos = strpos($value, ';');
- $props = '';
- if ($pos > 0) {
- $type = trim(substr($value, 0, $pos));
- $props = trim(substr($value, $pos+1));
- } else {
- $type = $value;
- }
- $content_type = new ContentType($type);
- if ($props) {
- $properties = $this->parseProperties($props);
- if (!isset($properties['charset'])) {
- $properties['charset'] = 'us-ascii';
- }
- $content_type->properties = $this->parseProperties($props);
- }
- $this->content_type = $content_type;
- }
- /* RFC2184 */
- function processParameters($aParameters) {
- $aResults = array();
- $aCharset = array();
- // handle multiline parameters
- foreach($aParameters as $key => $value) {
- if ($iPos = strpos($key,'*')) {
- $sKey = substr($key,0,$iPos);
- if (!isset($aResults[$sKey])) {
- $aResults[$sKey] = $value;
- if (substr($key,-1) == '*') { // parameter contains language/charset info
- $aCharset[] = $sKey;
- }
- } else {
- $aResults[$sKey] .= $value;
- }
- } else {
- $aResults[$key] = $value;
- }
- }
- foreach ($aCharset as $key) {
- $value = $aResults[$key];
- // extract the charset & language
- $charset = substr($value,0,strpos($value,"'"));
- $value = substr($value,strlen($charset)+1);
- $language = substr($value,0,strpos($value,"'"));
- $value = substr($value,strlen($charset)+1);
- // FIX ME What's the status of charset decode with language information ????
- $value = charset_decode($charset,$value);
- $aResults[$key] = $value;
- }
- return $aResults;
- }
- function parseProperties($value) {
- $propArray = explode(';', $value);
- $propResultArray = array();
- foreach ($propArray as $prop) {
- $prop = trim($prop);
- $pos = strpos($prop, '=');
- if ($pos > 0) {
- $key = trim(substr($prop, 0, $pos));
- $val = trim(substr($prop, $pos+1));
- if ($val{0} == '"') {
- $val = substr($val, 1, -1);
- }
- $propResultArray[$key] = $val;
- }
- }
- return $this->processParameters($propResultArray);
- }
- function parseDisposition($value) {
- $pos = strpos($value, ';');
- $props = '';
- if ($pos > 0) {
- $name = trim(substr($value, 0, $pos));
- $props = trim(substr($value, $pos+1));
- } else {
- $name = $value;
- }
- $props_a = $this->parseProperties($props);
- $disp = new Disposition($name);
- $disp->properties = $props_a;
- $this->disposition = $disp;
- }
- function mlist($field, $value) {
- $res_a = array();
- $value_a = explode(',', $value);
- foreach ($value_a as $val) {
- $val = trim($val);
- if ($val{0} == '<') {
- $val = substr($val, 1, -1);
- }
- if (substr($val, 0, 7) == 'mailto:') {
- $res_a['mailto'] = substr($val, 7);
- } else {
- $res_a['href'] = $val;
- }
- }
- $this->mlist[$field] = $res_a;
- }
- /*
- * function to get the addres strings out of the header.
- * Arguments: string or array of strings !
- * example1: header->getAddr_s('to').
- * example2: header->getAddr_s(array('to', 'cc', 'bcc'))
- */
- function getAddr_s($arr, $separator = ',',$encoded=false) {
- $s = '';
- if (is_array($arr)) {
- foreach($arr as $arg) {
- if ($this->getAddr_s($arg, $separator, $encoded)) {
- $s .= $separator . $result;
- }
- }
- $s = ($s ? substr($s, 2) : $s);
- } else {
- $addr = $this->{$arr};
- if (is_array($addr)) {
- foreach ($addr as $addr_o) {
- if (is_object($addr_o)) {
- if ($encoded) {
- $s .= $addr_o->getEncodedAddress() . $separator;
- } else {
- $s .= $addr_o->getAddress() . $separator;
- }
- }
- }
- $s = substr($s, 0, -strlen($separator));
- } else {
- if (is_object($addr)) {
- if ($encoded) {
- $s .= $addr->getEncodedAddress();
- } else {
- $s .= $addr->getAddress();
- }
- }
- }
- }
- return $s;
- }
- function getAddr_a($arg, $excl_arr = array(), $arr = array()) {
- if (is_array($arg)) {
- foreach($arg as $argument) {
- $arr = $this->getAddr_a($argument, $excl_arr, $arr);
- }
- } else {
- $addr = $this->{$arg};
- if (is_array($addr)) {
- foreach ($addr as $next_addr) {
- if (is_object($next_addr)) {
- if (isset($next_addr->host) && ($next_addr->host != '')) {
- $email = $next_addr->mailbox . '@' . $next_addr->host;
- } else {
- $email = $next_addr->mailbox;
- }
- $email = strtolower($email);
- if ($email && !isset($arr[$email]) && !isset($excl_arr[$email])) {
- $arr[$email] = $next_addr->personal;
- }
- }
- }
- } else {
- if (is_object($addr)) {
- $email = $addr->mailbox;
- $email .= (isset($addr->host) ? '@' . $addr->host : '');
- $email = strtolower($email);
- if ($email && !isset($arr[$email]) && !isset($excl_arr[$email])) {
- $arr[$email] = $addr->personal;
- }
- }
- }
- }
- return $arr;
- }
- function findAddress($address, $recurs = false) {
- $result = false;
- if (is_array($address)) {
- $i=0;
- foreach($address as $argument) {
- $match = $this->findAddress($argument, true);
- $last = end($match);
- if ($match[1]) {
- return $i;
- } else {
- if (count($match[0]) && !$result) {
- $result = $i;
- }
- }
- ++$i;
- }
- } else {
- if (!is_array($this->cc)) $this->cc = array();
- $srch_addr = $this->parseAddress($address);
- $results = array();
- foreach ($this->to as $to) {
- if ($to->host == $srch_addr->host) {
- if ($to->mailbox == $srch_addr->mailbox) {
- $results[] = $srch_addr;
- if ($to->personal == $srch_addr->personal) {
- if ($recurs) {
- return array($results, true);
- } else {
- return true;
- }
- }
- }
- }
- }
- foreach ($this->cc as $cc) {
- if ($cc->host == $srch_addr->host) {
- if ($cc->mailbox == $srch_addr->mailbox) {
- $results[] = $srch_addr;
- if ($cc->personal == $srch_addr->personal) {
- if ($recurs) {
- return array($results, true);
- } else {
- return true;
- }
- }
- }
- }
- }
- if ($recurs) {
- return array($results, false);
- } elseif (count($result)) {
- return true;
- } else {
- return false;
- }
- }
- //exit;
- return $result;
- }
- function getContentType($type0, $type1) {
- $type0 = $this->content_type->type0;
- $type1 = $this->content_type->type1;
- return $this->content_type->properties;
- }
- }
- ?>
|