--- 1.78/include/class.support.php 2006-03-28 23:23:39 -06:00 +++ edited/include/class.support.php 2006-05-19 14:24:21 -05:00 @@ -2422,13 +2422,15 @@ $issue_id = $email['issue_id']; $prj_id = Issue::getProjectID($issue_id); $sender_email = strtolower(Mail_API::getEmailAddress($email['headers']['from'])); + list($text_headers, $body) = Mime_Helper::splitHeaderBody($t['full_email']); if ((Mail_API::isVacationAutoResponder($email['headers'])) || (Notification::isBounceMessage($sender_email)) || (!Support::isAllowedToEmail($issue_id, $sender_email))) { // add the message body as a note $HTTP_POST_VARS = array( 'blocked_msg' => $email['full_email'], 'title' => @$email['headers']['subject'], - 'note' => Mail_API::getCannedBlockedMsgExplanation($issue_id) . $email['body'] + 'note' => Mail_API::getCannedBlockedMsgExplanation($issue_id) . $email['body'], + 'message_id' => Mail_API::getMessageID($text_headers, $body), ); // avoid having this type of message re-open the issue if (Mail_API::isVacationAutoResponder($email['headers'])) {