1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006 |
- <?php
- /**
- * Rfc822Header.class.php
- *
- * This file contains functions needed to handle headers in mime messages.
- *
- * @copyright © 2003-2007 The SquirrelMail Project Team
- * @license http://opensource.org/licenses/gpl-license.php GNU Public License
- * @version $Id$
- * @package squirrelmail
- * @subpackage mime
- * @since 1.3.2
- */
- /**
- * MIME header class
- * input: header_string or array
- * You must call parseHeader() function after creating object in order to fill object's
- * parameters.
- * @todo FIXME: there is no constructor function and class should ignore all input args.
- * @package squirrelmail
- * @subpackage mime
- * @since 1.3.0
- */
- class Rfc822Header {
- /**
- * Date header
- * @var mixed
- */
- var $date = -1;
- /**
- * Subject header
- * @var string
- */
- var $subject = '';
- /**
- * From header
- * @var array
- */
- var $from = array();
- /**
- * @var mixed
- */
- var $sender = '';
- /**
- * Reply-To header
- * @var array
- */
- var $reply_to = array();
- /**
- * Mail-Followup-To header
- * @var array
- */
- var $mail_followup_to = array();
- /**
- * To header
- * @var array
- */
- var $to = array();
- /**
- * Cc header
- * @var array
- */
- var $cc = array();
- /**
- * Bcc header
- * @var array
- */
- var $bcc = array();
- /**
- * In-reply-to header
- * @var string
- */
- var $in_reply_to = '';
- /**
- * Message-ID header
- * @var string
- */
- var $message_id = '';
- /**
- * References header
- * @var string
- */
- var $references = '';
- /**
- * @var mixed
- */
- var $mime = false;
- /**
- * Content Type object
- * @var object
- */
- var $content_type = '';
- /**
- * @var mixed
- */
- var $disposition = '';
- /**
- * X-Mailer header
- * @var string
- */
- var $xmailer = '';
- /**
- * Priority header
- * @var integer
- */
- var $priority = 3;
- /**
- * Disposition notification for requesting message delivery notification (MDN)
- * @var mixed
- */
- var $dnt = '';
- /**
- * Delivery notification (DR)
- * @var mixed
- */
- var $drnt = '';
- /**
- * @var mixed
- */
- var $encoding = '';
- /**
- * @var mixed
- */
- var $content_id = '';
- /**
- * @var mixed
- */
- var $content_desc = '';
- /**
- * @var mixed
- */
- var $mlist = array();
- /**
- * SpamAssassin 'x-spam-status' header
- * @var mixed
- */
- var $x_spam_status = array();
- /**
- * Extra header
- * only needed for constructing headers in delivery class
- * @var array
- */
- var $more_headers = array();
- /**
- * @param mixed $hdr string or array with message headers
- */
- function parseHeader($hdr) {
- if (is_array($hdr)) {
- $hdr = implode('', $hdr);
- }
- /* First we replace \r\n by \n and unfold the header */
- /* FIXME: unfolding header with multiple spaces "\n( +)" */
- $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 (!is_object($this->content_type)) {
- $this->parseContentType('text/plain; charset=us-ascii');
- }
- }
- /**
- * @param string $value
- * @return string
- */
- 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};
- }
- if($i < $cnt) {
- $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;
- }
- /**
- * Parse header field according to field type
- * @param string $field field name
- * @param string $value field value
- */
- 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 'disposition-notification-to':
- $value = $this->stripComments($value);
- $this->dnt = $this->parseAddress($value);
- break;
- case 'return-receipt-to':
- $value = $this->stripComments($value);
- $this->drnt = $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':
- case 'importance':
- case 'priority':
- $this->priority = $this->parsePriority($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;
- case 'x-spam-status':
- $this->x_spam_status = $this->parseSpamStatus($value);
- break;
- default:
- break;
- }
- }
- /**
- * @param string $address
- * @return array
- */
- function getAddressTokens($address) {
- $aTokens = 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;
- }
- /**
- * @param array $aStack
- * @param array $aComment
- * @param string $sEmail
- * @param string $sGroup
- * @return object AddressStructure object
- */
- 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;
- }
- /**
- * recursive function for parsing address strings and storing them in an address stucture 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
- * @param string $address
- * @param boolean $ar return array instead of only the first element
- * @param array $addr_ar (obsolete) array with parsed addresses
- * @param string $group (obsolete)
- * @param string $host default domainname in case of addresses without a domainname
- * @param string $lookup (since) callback function for lookup of address strings which are probably nicks (without @)
- * @return mixed array with AddressStructure objects or only one address_structure object.
- */
- function parseAddress($address,$ar=false,$aAddress=array(),$sGroup='',$sHost='',$lookup=false) {
- $aTokens = $this->getAddressTokens($address);
- $sPersonal = $sEmail = $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];
- }
- }
- /**
- * Normalise the different Priority headers into a uniform value,
- * namely that of the X-Priority header (1, 3, 5). Supports:
- * Priority, X-Priority, Importance.
- * X-MS-Mail-Priority is not parsed because it always coincides
- * with one of the other headers.
- *
- * NOTE: this is actually a duplicate from the function in
- * functions/imap_messages. I'm not sure if it's ok here to call
- * that function?
- * @param string $sValue literal priority name
- * @return integer
- */
- function parsePriority($sValue) {
- // don't use function call inside array_shift.
- $aValue = split('/\w/',trim($sValue));
- $value = strtolower(array_shift($aValue));
- if ( is_numeric($value) ) {
- return $value;
- }
- if ( $value == 'urgent' || $value == 'high' ) {
- return 1;
- } elseif ( $value == 'non-urgent' || $value == 'low' ) {
- return 5;
- }
- // default is normal priority
- return 3;
- }
- /**
- * @param string $value content type header
- */
- 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
- * @param array $aParameters
- * @return array
- */
- 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);
- /* FIXME: What's the status of charset decode with language information ????
- * Maybe language information contains only ascii text and charset_decode()
- * only runs htmlspecialchars() on it. If it contains 8bit information, you
- * get html encoded text in charset used by selected translation.
- */
- $value = charset_decode($charset,$value);
- $aResults[$key] = $value;
- }
- return $aResults;
- }
- /**
- * @param string $value
- * @return array
- */
- 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 (strlen($val) > 0 && $val{0} == '"') {
- $val = substr($val, 1, -1);
- }
- $propResultArray[$key] = $val;
- }
- }
- return $this->processParameters($propResultArray);
- }
- /**
- * Fills disposition object in rfc822Header object
- * @param string $value
- */
- 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;
- }
- /**
- * Fills mlist array keys in rfc822Header object
- * @param string $field
- * @param string $value
- */
- 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;
- }
- /**
- * Parses the X-Spam-Status header
- * @param string $value
- */
- function parseSpamStatus($value) {
- // Header value looks like this:
- // 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
- $spam_status = array();
- if (preg_match ('/^(No|Yes),\s+score=(-?\d+\.\d+)\s+required=(-?\d+\.\d+)\s+tests=(.*?)\s+autolearn=(.*?)\s+version=(.+?)$/', $value, $matches)) {
- // full header
- $spam_status['bad_format'] = 0;
- $spam_status['value'] = $matches[0];
- // is_spam
- if (isset($matches[1])
- && strtolower($matches[1]) == 'yes') {
- $spam_status['is_spam'] = true;
- } else {
- $spam_status['is_spam'] = false;
- }
- // score
- $spam_status['score'] = $matches[2];
- // required
- $spam_status['required'] = $matches[3];
- // tests
- $tests = array();
- $tests = explode(',', $matches[4]);
- foreach ($tests as $test) {
- $spam_status['tests'][] = trim($test);
- }
- // autolearn
- $spam_status['autolearn'] = $matches[5];
- // version
- $spam_status['version'] = $matches[6];
- } else {
- $spam_status['bad_format'] = 1;
- $spam_status['value'] = $value;
- }
- return $spam_status;
- }
- /**
- * function to get the address strings out of the header.
- * example1: header->getAddr_s('to').
- * example2: header->getAddr_s(array('to', 'cc', 'bcc'))
- * @param mixed $arr string or array of strings
- * @param string $separator
- * @param boolean $encoded (since 1.4.0) return encoded or plain text addresses
- * @return string
- */
- 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;
- }
- }
- $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 to get the array of addresses out of the header.
- * @param mixed $arg string or array of strings
- * @param array $excl_arr array of excluded email addresses
- * @param array $arr array of added email addresses
- * @return array
- */
- 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;
- }
- /**
- * @param mixed $address array or string
- * @param boolean $recurs
- * @return mixed array, boolean
- * @since 1.3.2
- */
- function findAddress($address, $recurs = false) {
- $result = false;
- if (is_array($address)) {
- $i=0;
- foreach($address as $argument) {
- $match = $this->findAddress($argument, true);
- 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;
- }
- /**
- * @param string $type0 media type
- * @param string $type1 media subtype
- * @return array media properties
- * @todo check use of media type arguments
- */
- function getContentType($type0, $type1) {
- $type0 = $this->content_type->type0;
- $type1 = $this->content_type->type1;
- return $this->content_type->properties;
- }
- }
|