$headers, 'body' => $body ); } return; } $parts = self::splitMime($body, $boundary); for($i=0; $i $headers, 'body' => $body); } else if($headers['content-type']['type'] == "message/rfc822") { self::parseMessage($body, $result); } } } } public static function splitMime($body, $boundary) { $start = 0; $res = array(); // Extract the mime parts excluding the boundary itself $p = strpos($body, '--' . $boundary . EOL, $start); if($p === false) { // no parts found! return array(); } // Position after first boundary line $start = $p + 3 + strlen($boundary); while(($p = strpos($body, '--' . $boundary . EOL, $start)) !== false) { $res[] = substr($body, $start, $p-$start); $start = $p + 3 + strlen($boundary); } // No more parts, find end boundary $p = strpos($body, '--' . $boundary . '--', $start); if($p === false) { return array(); } // The remaining part also needs to be parsed: $res[] = substr($body, $start, $p - $start); return $res; } public static function splitMessage($message, &$headers, &$body) { self::splitMessageRaw($message, $headers, $journal, $body); $headers = self::splitHeaders($headers); } public static function splitMessageRaw($message, &$headers, &$journal, &$body) { $headers = []; $body = ''; // Find an empty line between headers and body, otherwise we got a header-only message if(strpos($message, EOL . EOL)) { list($headers, $body) = explode(EOL . EOL, $message, 2); // Check if the header is actually a journal header $headers_array = self::splitHeaders($headers); if(isset($headers_array['x-ms-journal-report']) && isset($headers_array['content-type']['boundary'])) { $boundary = $headers_array['content-type']['boundary']; $parts = self::splitMime($body, $boundary); if(count($parts) >= 2) { self::splitMessageRaw($parts[0], $s, $j, $journal); $i = strpos($parts[1], EOL . EOL); $msg = substr($parts[1], $i); $i = 0; while(ctype_space($msg[$i])) { $i++; } if($i > 0) { $msg = substr($msg, $i); } self::splitMessageRaw($msg, $headers, $j, $body); } } // If the message has a single binary attachment, then drop the body part if(isset($headers_array['content-type']['type'])) { foreach(['application/', 'image/'] as $type) { if(strstr($headers_array['content-type']['type'], $type)) { $body = ''; break; } } } } else { $headers = $message; } } public static function removeJournal(&$message) { $has_journal = 0; self::splitMessageRaw($message, $headers, $journal, $body); if($journal) { $has_journal = 1; } $message = $headers . EOL . EOL . $body; return $has_journal; } public static function splitHeaders($headers) { $headers = self::headersToArray($headers); // normalize header names foreach ($headers as $name => $header) { $lower = strtolower($name); if($lower == $name) { continue; } unset($headers[$name]); if(!isset($headers[$lower])) { $headers[$lower] = $header; continue; } if(is_array($headers[$lower])) { $headers[$lower][] = $header; continue; } $headers[$lower] = array($headers[$lower], $header); } // Add some default values, if they are missing if(!isset($headers['content-type'])) { $headers['content-type'] = 'text/plain'; } // I saw a dumb email (it was a spam, though) having two Date: lines. // In this case we take the first date, and discard the rest if(isset($headers[self::HEADER_FIELDS[4]]) && is_array($headers[self::HEADER_FIELDS[4]])) { $headers[self::HEADER_FIELDS[4]] = $headers[self::HEADER_FIELDS[4]][0]; } for($i=0; $i $v) { if(strchr($v, EOL)) { $result[$k] = explode(EOL, $v); } } return $result; } public static function splitContentType($field = '') { $split = array(); $what = 'type'; $field = $what . '=' . $field; if(!preg_match_all('%([^=\s]+)\s*=\s*("[^"]+"|[^;]+)(;\s*|$)%', $field, $matches)) { return $split; } $split = array(); foreach ($matches[1] as $key => $name) { $name = strtolower($name); if($matches[2][$key][0] == '"') { $split[$name] = substr($matches[2][$key], 1, -1); } else { $split[$name] = $matches[2][$key]; } } return $split; } public static function getBoundary($headers = array()) { if(isset($headers['content-type']['boundary'])) { return $headers['content-type']['boundary']; } return ''; } public static function fixMimeBodyPart($headers = array(), $body = '') { if(isset($headers['content-transfer-encoding'])) { if(strtolower($headers['content-transfer-encoding']) == 'quoted-printable') { $body = quoted_printable_decode($body); } if(strtolower($headers['content-transfer-encoding']) == 'base64') { $body = base64_decode($body); } } if(isset($headers['content-type']['charset'])) { if(strtolower($headers['content-type']['charset']) == 'gb2312') { $headers['content-type']['charset'] = 'GBK'; } $body = iconv($headers['content-type']['charset'], 'utf-8' . '//IGNORE', $body); } if(strtolower($headers['content-type']['type']) == 'text/plain') { $body = self::escape_lt_gt_symbols($body); $body = preg_replace("/\n/", "THE_BREAK_HTML_TAG\n", $body); $body = EOL . self::printNicely($body); } return $body; } public static function escape_lt_gt_symbols($s = '') { $s = preg_replace("//", ">", $s); return $s; } public static function printNicely($s = '') { $k = 0; $nice = ""; $x = explode(" ", $s); for($i=0; $i 70){ $nice .= EOL; $k = 0; } } return $nice; } }