X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=functions%2Fimap_messages.php;h=9f147d2d233bd9a28b1e32134365b0afd57a9ff7;hb=fde32e3fc4afc7038da1ccfc9bea91be85efdb17;hp=78c5eb7fa3b96335801f0f0f654279437a43b28b;hpb=5565075350352e7bba6c6a9e68d3216a58efd1d0;p=squirrelmail.git diff --git a/functions/imap_messages.php b/functions/imap_messages.php index 78c5eb7f..9f147d2d 100755 --- a/functions/imap_messages.php +++ b/functions/imap_messages.php @@ -5,6 +5,8 @@ ** This implements functions that manipulate messages **/ + if (!isset($mime_php)) include "../functions/mime.php"; + /****************************************************************************** ** Copies specified messages to specified folder ******************************************************************************/ @@ -19,7 +21,7 @@ function sqimap_messages_delete ($imap_stream, $start, $end, $mailbox) { global $move_to_trash, $trash_folder, $auto_expunge; - if (($move_to_trash == true) && (sqimap_mailbox_exists($imap_stream, $trash_folder))) { + if (($move_to_trash == true) && (sqimap_mailbox_exists($imap_stream, $trash_folder) && ($mailbox != $trash_folder))) { sqimap_messages_copy ($imap_stream, $start, $end, $trash_folder); sqimap_messages_flag ($imap_stream, $start, $end, "Deleted"); } else { @@ -33,30 +35,84 @@ function sqimap_messages_flag ($imap_stream, $start, $end, $flag) { fputs ($imap_stream, "a001 STORE $start:$end +FLAGS (\\$flag)\r\n"); $read = sqimap_read_data ($imap_stream, "a001", true, $response, $message); - } /****************************************************************************** ** Returns some general header information -- FROM, DATE, and SUBJECT ******************************************************************************/ - function sqimap_get_small_header ($imap_stream, $id, &$from, &$subject, &$date) { - //fputs ($imap_stream, "a001 FETCH $id BODY[HEADER.FIELDS (DATE FROM SUBJECT)]\r\n"); - fputs ($imap_stream, "a001 FETCH $id RFC822.HEADER\r\n"); + class small_header { + var $from, $subject, $date, $to, $priority, $message_id; + } + + function sqimap_get_small_header ($imap_stream, $id, $sent) { + + fputs ($imap_stream, "a001 FETCH $id BODY.PEEK[HEADER.FIELDS (Date To From Cc Subject Message-Id X-Priority)]\r\n"); $read = sqimap_read_data ($imap_stream, "a001", true, $response, $message); $subject = _("(no subject)"); $from = _("Unknown Sender"); + $priority = "0"; + $messageid = "<>"; + + $g = 0; for ($i = 0; $i < count($read); $i++) { - if (strtolower(substr($read[$i], 0, 5)) == "from:") { - $from = sqimap_find_displayable_name(substr($read[$i], 5)); - } else if (strtolower(substr($read[$i], 0, 5)) == "date:") { + if (eregi ("^to:", $read[$i])) { + //$to = sqimap_find_displayable_name(substr($read[$i], 3)); + $to = substr($read[$i], 3); + } else if (eregi ("^from:", $read[$i])) { + //$from = sqimap_find_displayable_name(substr($read[$i], 5)); + $from = substr($read[$i], 5); + } else if (eregi ("^x-priority:", $read[$i])) { + $priority = trim(substr($read[$i], 11)); + } else if (eregi ("^message-id:", $read[$i])) { + $messageid = trim(substr($read[$i], 11)); + } else if (eregi ("^cc:", $read[$i])) { + $cc = substr($read[$i], 3); + } else if (eregi ("^date:", $read[$i])) { $date = substr($read[$i], 5); - } else if (strtolower(substr($read[$i], 0, 8)) == "subject:") { - $subject = htmlspecialchars(substr($read[$i], 8)); - if (strlen(trim($subject)) == 0) + } else if (eregi ("^subject:", $read[$i])) { + $subject = htmlspecialchars(eregi_replace ("^subject: ", "", $read[$i])); + if (trim($subject) == "") $subject = _("(no subject)"); } } + + // If there isn't a date, it takes the internal date and uses + // that as the normal date. + if (trim($date) == "") { + fputs ($imap_stream, "a002 FETCH $id INTERNALDATE\r\n"); + $internal_read = sqimap_read_data ($imap_stream, "a002", true, $r, $m); + + // * 22 FETCH (INTERNALDATE " 8-Sep-2000 13:17:07 -0500") + $date = $internal_read[0]; + $date = eregi_replace(".*internaldate \"", "", $date); + $date = eregi_replace("\".*", "", $date); + $date_ary = explode(" ", trim($date)); + $date_ary[0] = str_replace("-", " ", $date_ary[0]); + $date = implode (" ", $date_ary); + } + + fputs ($imap_stream, "a003 FETCH $id RFC822.SIZE\r\n"); + $read = sqimap_read_data($imap_stream, "a003", true, $r, $m); + preg_match("/([0-9]+)\)\s*$/i", $read[0], $regs); + $size = $regs[1] / 1024; + settype($size, "integer"); + + $header = new small_header; + if ($sent == true) + $header->from = $to; + else + $header->from = $from; + + $header->date = $date; + $header->subject = $subject; + $header->to = $to; + $header->priority = $priority; + $header->message_id = $messageid; + $header->cc = $cc; + $header->size = $size; + + return $header; } /****************************************************************************** @@ -83,26 +139,29 @@ ** the documentation folder for more information about this array. ******************************************************************************/ function sqimap_get_message ($imap_stream, $id, $mailbox) { - $message["INFO"]["ID"] = $id; - $message["INFO"]["MAILBOX"] = $mailbox; - $message["HEADER"] = sqimap_get_message_header($imap_stream, $id); - $message["ENTITIES"] = sqimap_get_message_body($imap_stream, $message["HEADER"]["BOUNDARY"], $id, $message["HEADER"]["TYPE0"], $message["HEADER"]["TYPE1"], $message["HEADER"]["ENCODING"], $message["HEADER"]["CHARSET"]); - return $message; + $header = sqimap_get_message_header($imap_stream, $id, $mailbox); + $msg = sqimap_get_message_body($imap_stream, &$header); + return $msg; } /****************************************************************************** ** Wrapper function that reformats the header information. ******************************************************************************/ - function sqimap_get_message_header ($imap_stream, $id) { + function sqimap_get_message_header ($imap_stream, $id, $mailbox) { fputs ($imap_stream, "a001 FETCH $id:$id BODY[HEADER]\r\n"); $read = sqimap_read_data ($imap_stream, "a001", true, $response, $message); - return sqimap_get_header($imap_stream, $read); + $header = sqimap_get_header($imap_stream, $read); + $header->id = $id; + $header->mailbox = $mailbox; + + return $header; } /****************************************************************************** ** Wrapper function that returns entity headers for use by decodeMime ******************************************************************************/ + /* function sqimap_get_entity_header ($imap_stream, &$read, &$type0, &$type1, &$bound, &$encoding, &$charset, &$filename) { $header = sqimap_get_header($imap_stream, $read); $type0 = $header["TYPE0"]; @@ -112,26 +171,33 @@ $charset = $header["CHARSET"]; $filename = $header["FILENAME"]; } + */ /****************************************************************************** ** Queries the IMAP server and gets all header information. ******************************************************************************/ function sqimap_get_header ($imap_stream, $read) { + global $where, $what; + + $hdr = new msg_header(); $i = 0; // Set up some defaults - $header["TYPE0"] = "text"; - $header["TYPE1"] = "plain"; - $header["CHARSET"] = "us-ascii"; + $hdr->type0 = "text"; + $hdr->type1 = "plain"; + $hdr->charset = "us-ascii"; + + preg_match("/\{([0-9]+)\}/", $read[$i], $regs); + preg_match("/[0-9]+/", $regs[0], $regs); while ($i < count($read)) { if (substr($read[$i], 0, 17) == "MIME-Version: 1.0") { - $header["MIME"] = true; + $hdr->mime = true; $i++; } /** ENCODING TYPE **/ else if (substr(strtolower($read[$i]), 0, 26) == "content-transfer-encoding:") { - $header["ENCODING"] = strtolower(trim(substr($read[$i], 26))); + $hdr->encoding = strtolower(trim(substr($read[$i], 26))); $i++; } @@ -143,10 +209,10 @@ if (strpos($cont, "/")) { - $header["TYPE0"] = substr($cont, 0, strpos($cont, "/")); - $header["TYPE1"] = substr($cont, strpos($cont, "/")+1); + $hdr->type0 = substr($cont, 0, strpos($cont, "/")); + $hdr->type1 = substr($cont, strpos($cont, "/")+1); } else { - $header["TYPE0"] = $cont; + $hdr->type0 = $cont; } @@ -161,7 +227,7 @@ /** Detect the boundary of a multipart message **/ if (eregi("boundary=\"([^\"]+)\"", $line, $regs)) { - $header["BOUNDARY"] = $regs[1]; + $hdr->boundary = $regs[1]; } /** Detect the charset **/ @@ -174,9 +240,9 @@ $charset = substr($charset, $pos); } $charset = str_replace("\"", "", $charset); - $header["CHARSET"] = $charset; + $hdr->charset = $charset; } else { - $header["CHARSET"] = "us-ascii"; + $hdr->charset = "us-ascii"; } } @@ -203,21 +269,21 @@ $name = substr($name, $pos); } $name = str_replace("\"", "", $name); - $header["FILENAME"] = $name; + $hdr->filename = $name; } } /** REPLY-TO **/ else if (strtolower(substr($read[$i], 0, 9)) == "reply-to:") { - $header["REPLYTO"] = trim(substr($read[$i], 9, strlen($read[$i]))); + $hdr->replyto = trim(substr($read[$i], 9, strlen($read[$i]))); $i++; } /** FROM **/ else if (strtolower(substr($read[$i], 0, 5)) == "from:") { - $header["FROM"] = trim(substr($read[$i], 5, strlen($read[$i]) - 6)); - if ($header["REPLYTO"] == "") - $header["REPLYTO"] = $header["FROM"]; + $hdr->from = trim(substr($read[$i], 5, strlen($read[$i]) - 6)); + if ($hdr->replyto == "") + $hdr->replyto = $hdr->from; $i++; } /** DATE **/ @@ -226,83 +292,79 @@ $d = trim($d); $d = ereg_replace(" ", " ", $d); $d = explode(" ", $d); - $header["DATE"] = getTimeStamp($d); + $hdr->date = getTimeStamp($d); $i++; } /** SUBJECT **/ else if (strtolower(substr($read[$i], 0, 8)) == "subject:") { - $header["SUBJECT"] = trim(substr($read[$i], 8, strlen($read[$i]) - 9)); - if (strlen(Chop($header["SUBJECT"])) == 0) - $header["SUBJECT"] = _("(no subject)"); + $hdr->subject = trim(substr($read[$i], 8, strlen($read[$i]) - 9)); + if (strlen(Chop($hdr->subject)) == 0) + $hdr->subject = _("(no subject)"); + + if ($where == "SUBJECT") { + $hdr->subject = eregi_replace($what, "\\0", $hdr->subject); + } $i++; } /** CC **/ else if (strtolower(substr($read[$i], 0, 3)) == "cc:") { $pos = 0; - $header["CC"][$pos] = trim(substr($read[$i], 4)); + $hdr->cc[$pos] = trim(substr($read[$i], 4)); $i++; - while ((substr($read[$i], 0, 1) == " ") && (trim($read[$i]) != "")) { + while (((substr($read[$i], 0, 1) == " ") || (substr($read[$i], 0, 1) == "\t")) && (trim($read[$i]) != "")){ $pos++; - $header["CC"][$pos] = trim($read[$i]); + $hdr->cc[$pos] = trim($read[$i]); $i++; } } /** TO **/ else if (strtolower(substr($read[$i], 0, 3)) == "to:") { $pos = 0; - $header["TO"][$pos] = trim(substr($read[$i], 4)); + $hdr->to[$pos] = trim(substr($read[$i], 4)); $i++; - while ((substr($read[$i], 0, 1) == " ") && (trim($read[$i]) != "")){ + while (((substr($read[$i], 0, 1) == " ") || (substr($read[$i], 0, 1) == "\t")) && (trim($read[$i]) != "")){ $pos++; - $header["TO"][$pos] = trim($read[$i]); + $hdr->to[$pos] = trim($read[$i]); $i++; } } /** MESSAGE ID **/ else if (strtolower(substr($read[$i], 0, 11)) == "message-id:") { - $header["MESSAGE-ID"] = trim(substr($read[$i], 11)); + $hdr->message_id = trim(substr($read[$i], 11)); $i++; } /** ERROR CORRECTION **/ else if (substr($read[$i], 0, 1) == ")") { - if ($header["SUBJECT"] == "") - $header["SUBJECT"] = _("(no subject)"); + if (strlen(trim($hdr->subject)) == 0) + $hdr->subject = _("(no subject)"); - if ($header["FROM"] == "") - $header["FROM"] = _("(unknown sender)"); + if (strlen(trim($hdr->from)) == 0) + $hdr->from = _("(unknown sender)"); - if ($header["DATE"] == "") - $header["DATE"] = time(); + if (strlen(trim($hdr->date)) == 0) + $hdr->date = time(); $i++; } else { $i++; } } - return $header; + return $hdr; } /****************************************************************************** ** Returns the body of a message. ******************************************************************************/ - function sqimap_get_message_body ($imap_stream, $bound, $id, $type0, $type1, $encoding, $charset) { - fputs ($imap_stream, "a001 FETCH $id:$id BODY[TEXT]\r\n"); - $read = sqimap_read_data ($imap_stream, "a001", true, $response, $message); - - $i = 0; - $j = 0; - while ($i < count($read)-1) { - if ( ($i != 0) ) { - $bodytmp[$j] = $read[$i]; - $j++; - } - $i++; - } - $body = $bodytmp; - - return decodeMime($body, $bound, $type0, $type1, $encoding, $charset); + function sqimap_get_message_body ($imap_stream, &$header) { + $id = $header->id; + return decodeMime($imap_stream, $body, &$header); } + + + /****************************************************************************** + ** Returns an array with the body structure + ******************************************************************************/ ?>