X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fread_body.php;h=09c41347ee2a2b9e322615fe859f63a7295902b3;hb=f7cd8eb4e788b45f94c494836eae2ac63522a672;hp=77d6020dc9c06c624bca45c16df1d8d1a8fde28e;hpb=abafb676191905f40ed21a163c95f4aa676e88ff;p=squirrelmail.git diff --git a/src/read_body.php b/src/read_body.php index 77d6020d..09c41347 100644 --- a/src/read_body.php +++ b/src/read_body.php @@ -3,17 +3,19 @@ /** * read_body.php * - * Copyright (c) 1999-2003 The SquirrelMail Project Team - * Licensed under the GNU GPL. For full terms see the file COPYING. - * * This file is used for reading the msgs array and displaying * the resulting emails in the right frame. * - * $Id$ + * @copyright © 1999-2006 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License + * @version $Id$ * @package squirrelmail */ -/** Path for SquirrelMail required files. */ +/** + * Path for SquirrelMail required files. + * @ignore + */ define('SM_PATH','../'); /* SquirrelMail required files. */ @@ -26,7 +28,8 @@ require_once(SM_PATH . 'functions/url_parser.php'); require_once(SM_PATH . 'functions/html.php'); require_once(SM_PATH . 'functions/global.php'); require_once(SM_PATH . 'functions/identity.php'); -require_once(SM_PATH . 'functions/mailbox_display.php'); +include_once(SM_PATH . 'functions/arrays.php'); +include_once(SM_PATH . 'functions/mailbox_display.php'); /** * Given an IMAP message id number, this will look it up in the cached @@ -35,41 +38,19 @@ require_once(SM_PATH . 'functions/mailbox_display.php'); * @param int $passed_id The current message UID * @return the index of the next valid message from the array */ -function findNextMessage($passed_id) { - global $msort, $msgs, $sort, - $thread_sort_messages, $allow_server_sort, - $server_sort_array; - if (!is_array($server_sort_array)) { - $thread_sort_messages = 0; - $allow_server_sort = FALSE; - } - $result = -1; - if ($thread_sort_messages || $allow_server_sort) { - $count = count($server_sort_array) - 1; - foreach($server_sort_array as $key=>$value) { - if ($passed_id == $value) { - if ($key == $count) { - break; - } - $result = $server_sort_array[$key + 1]; - break; - } - } +function findNextMessage($uidset,$passed_id='backwards') { + if (!is_array($uidset)) { + return -1; + } + if ($passed_id=='backwards' || !is_array($uidset)) { // check for backwards compattibilty gpg plugin + $passed_id = $uidset; + } + $result = sqm_array_get_value_by_offset($uidset,$passed_id,1); + if ($result === false) { + return -1; } else { - if (is_array($msort)) { - for (reset($msort); ($key = key($msort)), (isset($key)); next($msort)) { - if ($passed_id == $msgs[$key]['ID']) { - next($msort); - $key = key($msort); - if (isset($key)){ - $result = $msgs[$key]['ID']; - break; - } - } - } - } + return $result; } - return $result; } /** @@ -79,54 +60,39 @@ function findNextMessage($passed_id) { * @param int $passed_id The current message UID * @return the index of the next valid message from the array */ -function findPreviousMessage($numMessages, $passed_id) { - global $msort, $sort, $msgs, - $thread_sort_messages, - $allow_server_sort, $server_sort_array; - $result = -1; - if (!is_array($server_sort_array)) { - $thread_sort_messages = 0; - $allow_server_sort = FALSE; - } - if ($thread_sort_messages || $allow_server_sort ) { - foreach($server_sort_array as $key=>$value) { - if ($passed_id == $value) { - if ($key == 0) { - break; - } - $result = $server_sort_array[$key - 1]; - break; - } - } + +function findPreviousMessage($uidset, $passed_id) { + if (!is_array($uidset)) { + return -1; + } + $result = sqm_array_get_value_by_offset($uidset,$passed_id,-1); + if ($result === false) { + return -1; } else { - if (is_array($msort)) { - for (reset($msort); ($key = key($msort)), (isset($key)); next($msort)) { - if ($passed_id == $msgs[$key]['ID']) { - prev($msort); - $key = key($msort); - if (isset($key)) { - $result = $msgs[$key]['ID']; - break; - } - } - } - } + return $result; } - return $result; } /** * Displays a link to a page where the message is displayed more * "printer friendly". * @param string $mailbox Name of current mailbox - * @param int $passed_id + * @param int $passed_id */ function printer_friendly_link($mailbox, $passed_id, $passed_ent_id) { - global $javascript_on, $color; + global $javascript_on, $show_html_default; - $params = '?passed_ent_id=' . $passed_ent_id . + /* hackydiehack */ + if( !sqgetGlobalVar('view_unsafe_images', $view_unsafe_images, SQ_GET) ) { + $view_unsafe_images = false; + } else { + $view_unsafe_images = true; + } + $params = '?passed_ent_id=' . urlencode($passed_ent_id) . '&mailbox=' . urlencode($mailbox) . - '&passed_id=' . $passed_id; + '&passed_id=' . urlencode($passed_id) . + '&view_unsafe_images='. (bool) $view_unsafe_images . + '&show_html_default=' . $show_html_default; $print_text = _("View Printable Version"); @@ -149,22 +115,20 @@ function printer_friendly_link($mailbox, $passed_id, $passed_ent_id) { return $result; } -function ServerMDNSupport($read) { - /* escaping $ doesn't work -> \x36 */ - $ret = preg_match('/(\x36MDNSent|\\\\\*)/i', $read); - return $ret; +function ServerMDNSupport($aFlags) { + /* escaping $ doesn't work -> \x36 */ + return ( in_array('$mdnsent',$aFlags,true) || + in_array('\\*',$aFlags,true) ) ; } function SendMDN ( $mailbox, $passed_id, $sender, $message, $imapConnection) { - global $username, $attachment_dir, - $version, $attachments, $squirrelmail_language, $default_charset, - $languages, $useSendmail, $domain, $sent_folder, - $popuser, $data_dir, $username; + global $username, $attachment_dir, $popuser, $username, $color, + $version, $squirrelmail_language, $default_charset, + $languages, $useSendmail, $domain, $sent_folder; sqgetGlobalVar('SERVER_NAME', $SERVER_NAME, SQ_SERVER); $header = $message->rfc822_header; - $hashed_attachment_dir = getHashedDir($username, $attachment_dir); $rfc822_header = new Rfc822Header(); $content_type = new ContentType('multipart/report'); @@ -216,16 +180,16 @@ function SendMDN ( $mailbox, $passed_id, $sender, $message, $imapConnection) { $now = getLongDateString( time() ); set_my_charset(); $body = _("Your message") . "\r\n\r\n" . - "\t" . _("To:") . ' ' . decodeHeader($to,false,false) . "\r\n" . - "\t" . _("Subject:") . ' ' . decodeHeader($header->subject,false,false) . "\r\n" . - "\t" . _("Sent:") . ' ' . $senton . "\r\n" . + "\t" . _("To") . ': ' . decodeHeader($to,false,false) . "\r\n" . + "\t" . _("Subject") . ': ' . decodeHeader($header->subject,false,false) . "\r\n" . + "\t" . _("Sent") . ': ' . $senton . "\r\n" . "\r\n" . sprintf( _("Was displayed on %s"), $now ); $special_encoding = ''; - if (isset($languages[$squirrelmail_language]['XTRA_CODE']) && - function_exists($languages[$squirrelmail_language]['XTRA_CODE'])) { - $body = $languages[$squirrelmail_language]['XTRA_CODE']('encode', $body); + if (isset($languages[$squirrelmail_language]['XTRA_CODE']) && + function_exists($languages[$squirrelmail_language]['XTRA_CODE'] . '_encode')) { + $body = call_user_func($languages[$squirrelmail_language]['XTRA_CODE'] . '_encode', $body); if (strtolower($default_charset) == 'iso-2022-jp') { if (mb_detect_encoding($body) == 'ASCII') { $special_encoding = '8bit'; @@ -234,6 +198,8 @@ function SendMDN ( $mailbox, $passed_id, $sender, $message, $imapConnection) { $special_encoding = '7bit'; } } + } elseif (sq_is8bit($body)) { + $special_encoding = '8bit'; } $part1 = new Message(); $part1->setBody($body); @@ -285,7 +251,7 @@ function SendMDN ( $mailbox, $passed_id, $sender, $message, $imapConnection) { } else { require_once(SM_PATH . 'class/deliver/Deliver_SMTP.class.php'); $deliver = new Deliver_SMTP(); - global $smtpServerAddress, $smtpPort, $smtp_auth_mech, $pop_before_smtp; + global $smtpServerAddress, $smtpPort, $pop_before_smtp; $authPop = (isset($pop_before_smtp) && $pop_before_smtp) ? true : false; get_smtp_user($user, $pass); $stream = $deliver->initStream($composeMessage,$domain,0, @@ -297,8 +263,8 @@ function SendMDN ( $mailbox, $passed_id, $sender, $message, $imapConnection) { $success = $deliver->finalizeStream($stream); } if (!$success) { - $msg = $deliver->dlv_msg . '
' . - _("Server replied: ") . $deliver->dlv_ret_nr . ' '. + $msg = $deliver->dlv_msg . '
' . + _("Server replied:") . ' ' . $deliver->dlv_ret_nr . ' ' . $deliver->dlv_server_msg; require_once(SM_PATH . 'functions/display_messages.php'); plain_error_message($msg, $color); @@ -316,32 +282,11 @@ function SendMDN ( $mailbox, $passed_id, $sender, $message, $imapConnection) { return $success; } -function ToggleMDNflag ($set ,$imapConnection, $mailbox, $passed_id, $uid_support) { +function ToggleMDNflag ($set ,$imapConnection, $mailbox, $passed_id) { $sg = $set?'+':'-'; $cmd = 'STORE ' . $passed_id . ' ' . $sg . 'FLAGS ($MDNSent)'; - $read = sqimap_run_command ($imapConnection, $cmd, true, $response, - $readmessage, $uid_support); -} - -function ClearAttachments() { - global $username, $attachments, $attachment_dir; - - $hashed_attachment_dir = getHashedDir($username, $attachment_dir); - - $rem_attachments = array(); - if (isset($attachments)) { - foreach ($attachments as $info) { - if ($info['session'] == -1) { - $attached_file = "$hashed_attachment_dir/$info[localfilename]"; - if (file_exists($attached_file)) { - unlink($attached_file); - } - } else { - $rem_attachments[] = $info; - } - } - } - $attachments = $rem_attachments; + $read = sqimap_run_command ($imapConnection, $cmd, true, $response, + $readmessage, TRUE); } function formatRecipientString($recipients, $item ) { @@ -379,15 +324,15 @@ function formatRecipientString($recipients, $item ) { foreach($recipients as $r) { $add = decodeHeader($r->getAddress(true)); if ($string) { - $string .= '
' . $add; + $string .= '
' . $add; } else { $string = $add; if ($cnt > 1) { - $string .= ' ()'; + $string .= '">'._("less").')'; } else { - $string .= '">'._("more").')'; + $string .= '">'._("more").')'; break; } } @@ -397,11 +342,13 @@ function formatRecipientString($recipients, $item ) { return $string; } -function formatEnvheader($mailbox, $passed_id, $passed_ent_id, $message, +function formatEnvheader($aMailbox, $passed_id, $passed_ent_id, $message, $color, $FirstTimeSee) { - global $msn_user_support, $default_use_mdn, $default_use_priority, + global $default_use_mdn, $default_use_priority, $show_xmailer_default, $mdn_user_support, $PHP_SELF, $javascript_on, - $squirrelmail_language; + $squirrelmail_language; + + $mailbox = $aMailbox['NAME']; $header = $message->rfc822_header; $env = array(); @@ -430,8 +377,8 @@ function formatEnvheader($mailbox, $passed_id, $passed_ent_id, $message, if ($message->is_mdnsent) { $env[_("Read receipt")] = _("sent"); } else { - $env[_("Read receipt")] = _("requested"); - if (!(handleAsSent($mailbox) || + $env[_("Read receipt")] = _("requested"); + if (!(handleAsSent($mailbox) || $message->is_deleted || $passed_ent_id)) { $mdn_url = $PHP_SELF . '&sendreceipt=1'; @@ -455,53 +402,51 @@ function formatEnvheader($mailbox, $passed_id, $passed_ent_id, $message, } } - $s = ''; + $s = '
'; foreach ($env as $key => $val) { if ($val) { - $s .= ''; - $s .= html_tag('TD', '' . $key . ':  ', 'RIGHT', '', 'VALIGN="TOP" WIDTH="20%"') . "\n"; - $s .= html_tag('TD', $val, 'left', '', 'VALIGN="TOP" WIDTH="80%"') . "\n"; - $s .= ''; + $s .= ''; + $s .= html_tag('td', '' . $key . ':  ', 'right', '', 'valign="top" width="20%"') . "\n"; + $s .= html_tag('td', $val, 'left', '', 'valign="top" width="80%"') . "\n"; + $s .= ''; } } - echo '
'."\n"; - echo ''."\n"; - echo '
'."\n"; + echo ''."\n"; + echo '
'."\n"; echo $s; do_hook('read_body_header'); formatToolbar($mailbox, $passed_id, $passed_ent_id, $message, $color); - echo '
'; - echo '
'; + echo ''; + echo ''."\n"; + echo ''; } /** - * Format message toolbar - * + * Format message toolbar + * * @param string $mailbox Name of current mailbox * @param int $passed_id UID of current message * @param int $passed_ent_id Id of entity within message * @param object $message Current message object * @param object $mbx_response */ -function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_response, $nav_on_top = TRUE) { +function formatMenubar($aMailbox, $passed_id, $passed_ent_id, $message, $removedVar, $nav_on_top = TRUE) { global $base_uri, $draft_folder, $where, $what, $color, $sort, - $startMessage, $PHP_SELF, $save_as_draft, $uid_support, + $startMessage, $PHP_SELF, $save_as_draft, $enable_forward_as_attachment, $imapConnection, $lastTargetMailbox, - $data_dir, $username; + $username, $delete_prev_next_display, + $compose_new_win, $javascript_on, $compose_width, $compose_height; + + //FIXME cleanup argument list, use $aMailbox where possible + $mailbox = $aMailbox['NAME']; $topbar_delimiter = ' | '; $double_delimiter = '    '; $urlMailbox = urlencode($mailbox); - $comp_uri = 'src/compose.php' . - '?passed_id=' . $passed_id . - '&mailbox=' . $urlMailbox . - '&startMessage=' . $startMessage . - (isset($passed_ent_id)?'&passed_ent_id='.$passed_ent_id:''); - $msgs_url = $base_uri . 'src/'; // BEGIN NAV ROW - PREV/NEXT, DEL PREV/NEXT, LINKS TO INDEX, etc. @@ -525,7 +470,7 @@ function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_resp } $prev_link = _("Previous"); - if($entities[$passed_ent_id] > 1) { + if(isset($entities[$passed_ent_id]) && $entities[$passed_ent_id] > 1) { $prev_ent_id = $entity_count[$entities[$passed_ent_id] - 1]; $prev_link = ''._("View Message").']'; // Prev/Next links for regular messages - } else if ( !(isset($where) && isset($what)) ) { - $prev = findPreviousMessage($mbx_response['EXISTS'], $passed_id); - $next = findNextMessage($passed_id); + } else if ( true ) { //!(isset($where) && isset($what)) ) { + $prev = findPreviousMessage($aMailbox['UIDSET'][$what], $passed_id); + $next = findNextMessage($aMailbox['UIDSET'][$what],$passed_id); $prev_link = _("Previous"); if ($prev >= 0) { $uri = $base_uri . 'src/read_body.php?passed_id='.$prev. '&mailbox='.$urlMailbox.'&sort='.$sort. + "&where=$where&what=$what" . '&startMessage='.$startMessage.'&show_more=0'; $prev_link = ''.$prev_link.''; } @@ -571,21 +517,23 @@ function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_resp if ($next >= 0) { $uri = $base_uri . 'src/read_body.php?passed_id='.$next. '&mailbox='.$urlMailbox.'&sort='.$sort. + "&where=$where&what=$what" . '&startMessage='.$startMessage.'&show_more=0'; $next_link = ''.$next_link.''; } // Only bother with Delete & Prev and Delete & Next IF - // we have UID support, and top display is enabled. - $delete_prev_next_display = getPref($data_dir, $username, 'delete_prev_next_display', 1); - if ( $uid_support && $delete_prev_next_display == 1 ) { + // top display is enabled. + if ( $delete_prev_next_display == 1 && + in_array('\\deleted', $aMailbox['PERMANENTFLAGS'],true) ) { $del_prev_link = _("Delete & Prev"); if ($prev >= 0) { $uri = $base_uri . 'src/read_body.php?passed_id='.$prev. '&mailbox='.$urlMailbox.'&sort='.$sort. '&startMessage='.$startMessage.'&show_more=0'. + "&where=$where&what=$what" . '&delete_id='.$passed_id; - $del_prev_link = ''.$del_prev_link.''; + $del_prev_link = ''.$del_prev_link.''; } $del_next_link = _("Delete & Next"); @@ -593,6 +541,7 @@ function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_resp $uri = $base_uri . 'src/read_body.php?passed_id='.$next. '&mailbox='.$urlMailbox.'&sort='.$sort. '&startMessage='.$startMessage.'&show_more=0'. + "&where=$where&what=$what" . '&delete_id='.$passed_id; $del_next_link = ''.$del_next_link.''; } @@ -604,13 +553,11 @@ function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_resp } // Start with Search Results or Message List link. - if (isset($where) && isset($what)) { - $msgs_url .= 'search.php?where=' . urlencode($where) . - '&what=' . urlencode($what) . '&mailbox=' . $urlMailbox; + $msgs_url .= "$where?where=read_body.php&what=$what&mailbox=" . $urlMailbox. + "&startMessage=$startMessage"; + if ($where == 'search.php') { $msgs_str = _("Search Results"); } else { - $msgs_url .= 'right_main.php?sort=' . $sort . '&startMessage=' . - $startMessage . '&mailbox=' . $urlMailbox; $msgs_str = _("Message List"); } $nav_row .= $double_delimiter . @@ -620,81 +567,110 @@ function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_resp // BEGIN MENU ROW - DELETE/REPLY/FORWARD/MOVE/etc. - $menu_row = ''; + $menu_row = ''; + $comp_uri = $base_uri.'src/compose.php' . + '?passed_id=' . $passed_id . + '&mailbox=' . $urlMailbox . + '&startMessage=' . $startMessage . + (isset($passed_ent_id) ? '&passed_ent_id='.$passed_ent_id : ''); + + // Start form for reply/reply all/forward.. + $target = ''; + $on_click=''; + $method='method="post" '; + $onsubmit=''; + if ($compose_new_win == '1') { + if (!preg_match("/^[0-9]{3,4}$/", $compose_width)) { + $compose_width = '640'; + } + if (!preg_match("/^[0-9]{3,4}$/", $compose_height)) { + $compose_height = '550'; + } + if ( $javascript_on ) { + $on_click=' onclick="comp_in_new_form(\''.$comp_uri.'\', this, this.form,'. $compose_width .',' . $compose_height .')"'; + $comp_uri = 'javascript:void(0)'; + $method='method="get" '; + $onsubmit = 'onsubmit="return false" '; + } else { + $target = 'target="_blank"'; + } + } + + $menu_row .= "\n".'
'."\n"; // If Draft folder - create Resume link if (($mailbox == $draft_folder) && ($save_as_draft)) { - $comp_alt_uri = $comp_uri . '&smaction=draft'; + $new_button = 'smaction_draft'; $comp_alt_string = _("Resume Draft"); } else if (handleAsSent($mailbox)) { // If in Sent folder, edit as new - $comp_alt_uri = $comp_uri . '&smaction=edit_as_new'; + $new_button = 'smaction_edit_new'; $comp_alt_string = _("Edit Message as New"); } - // Show Alt URI for Draft/Sent - if (isset($comp_alt_uri)) { - $menu_row .= $topbar_delimiter; - $menu_row .= makeComposeLink($comp_alt_uri, $comp_alt_string); - $menu_row .= $topbar_delimiter; - } - - $comp_action_uri = $comp_uri . '&smaction=reply'; - $menu_row .= makeComposeLink($comp_action_uri, _("Reply")); - - $comp_action_uri = $comp_uri . '&smaction=reply_all'; - $menu_row .= $topbar_delimiter; - $menu_row .= makeComposeLink($comp_action_uri, _("Reply All")); - - - $comp_action_uri = $comp_uri . '&smaction=forward'; - $menu_row .= $topbar_delimiter; - $menu_row .= makeComposeLink($comp_action_uri, _("Forward")); - - if ($enable_forward_as_attachment) { - $comp_action_uri = $comp_uri . '&smaction=forward_as_attachment'; - $menu_row .= $topbar_delimiter; - $menu_row .= makeComposeLink($comp_action_uri, _("Forward as Attachment")); - } - - $delete_link = _("Delete"); - if (!(isset($passed_ent_id) && $passed_ent_id)) { - $delete_url = $base_uri . 'src/delete_message.php?mailbox=' . $urlMailbox . - '&message=' . $passed_id . '&'; - - if ($where && $what) { - $delete_url .= 'where=' . urlencode($where) . '&what=' . urlencode($what); + if (isset($comp_alt_string)) + $menu_row .= getButton('submit', $new_button, $comp_alt_string, $on_click) . "\n"; + + $menu_row .= getButton('submit', 'smaction_reply', _("Reply"), $on_click) . "\n"; + $menu_row .= getButton('submit', 'smaction_reply_all', _("Reply All"), $on_click) ."\n"; + $menu_row .= getButton('submit', 'smaction_forward', _("Forward"), $on_click); + if ($enable_forward_as_attachment) + $menu_row .= '' . _("As Attachment") .'  '."\n"; + + $menu_row .= '
 '; + + if ( in_array('\\deleted', $aMailbox['PERMANENTFLAGS'],true) ) { + // Form for deletion. Form is handled by the originating display in $where. This is right_main.php or search.php + $delete_url = $base_uri . "src/$where"; + $menu_row .= '
'; + + if (!(isset($passed_ent_id) && $passed_ent_id)) { + $menu_row .= addHidden('mailbox', $aMailbox['NAME']); + $menu_row .= addHidden('msg[0]', $passed_id); + $menu_row .= addHidden('startMessage', $startMessage); + $menu_row .= getButton('submit', 'delete', _("Delete")); + $menu_row .= '' . _("Bypass Trash"); } else { - $delete_url .= 'sort=' . $sort . '&startMessage=' . $startMessage; + $menu_row .= getButton('submit', 'delete', _("Delete"), '', FALSE) . "\n"; // delete button is disabled } - $delete_link = '' . $delete_link . ''; - $delete_link .= ' (' - ._("Bypass Trash").')'; - - } - $menu_row .= $topbar_delimiter.$delete_link; + $menu_row .= '
'; + } // Add top move link $menu_row .= '
'; - if (!(isset($passed_ent_id) && $passed_ent_id)) { - $menu_row .= '
'. - ''. - ''._("Move to:") . + if ( !(isset($passed_ent_id) && $passed_ent_id) && + in_array('\\deleted', $aMailbox['PERMANENTFLAGS'],true) ) { + + $menu_row .= ''. + ''. + + addHidden('mailbox',$aMailbox['NAME']) . + addHidden('msg[0]', $passed_id) . _("Move to:") . ' '. - ''. - ''; + $menu_row .= ' '; + + $menu_row .= getButton('submit', 'moveButton',_("Move")) . "\n" . ''; } $menu_row .= ''; // echo rows, with hooks - do_hook('read_body_menu_top'); + $ret = do_hook_function('read_body_menu_top', array($nav_row, $menu_row)); + if (is_array($ret)) { + if (isset($ret[0]) && !empty($ret[0])) { + $nav_row = $ret[0]; + } + if (isset($ret[1]) && !empty($ret[1])) { + $menu_row = $ret[1]; + } + } echo ''; echo $nav_on_top ? $nav_row . $menu_row : $menu_row . $nav_row; echo '
'."\n"; @@ -702,15 +678,27 @@ function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_resp } function formatToolbar($mailbox, $passed_id, $passed_ent_id, $message, $color) { - global $base_uri; + global $base_uri, $where, $what; $urlMailbox = urlencode($mailbox); - sqgetGlobalVar('QUERY_STRING', $query_string, SQ_SERVER); + $urlPassed_id = urlencode($passed_id); + $urlPassed_ent_id = urlencode($passed_ent_id); + + $query_string = 'mailbox=' . $urlMailbox . '&passed_id=' . $urlPassed_id . '&passed_ent_id=' . $urlPassed_ent_id; + + if (!empty($where)) { + $query_string .= '&where=' . urlencode($where); + } + + if (!empty($what)) { + $query_string .= '&what=' . urlencode($what); + } + $url = $base_uri.'src/view_header.php?'.$query_string; - $s = "\n" . - html_tag( 'td', '', 'right', '', 'VALIGN="MIDDLE" WIDTH="20%"' ) . '' . _("Options") . ":  \n" . - html_tag( 'td', '', 'left', '', 'VALIGN="MIDDLE" WIDTH="80%"' ) . '' . + $s = "\n" . + html_tag( 'td', '', 'right', '', 'valign="middle" width="20%"' ) . '' . _("Options") . ":  \n" . + html_tag( 'td', '', 'left', '', 'valign="middle" width="80%"' ) . '' . ''._("View Full Header").''; /* Output the printer friendly link if we are in subtle mode. */ @@ -718,12 +706,33 @@ function formatToolbar($mailbox, $passed_id, $passed_ent_id, $message, $color) { printer_friendly_link($mailbox, $passed_id, $passed_ent_id); echo $s; do_hook("read_body_header_right"); - $s = "\n" . - "\n"; + $s = "\n" . + "\n"; echo $s; } +/** + * Creates button + * + * @deprecated see form functions available in 1.5.1 and 1.4.3. + * @param string $type + * @param string $name + * @param string $value + * @param string $js + * @param bool $enabled + */ +function getButton($type, $name, $value, $js = '', $enabled = TRUE) { + $disabled = ( $enabled ? '' : 'disabled ' ); + $js = ( $js ? $js.' ' : '' ); + return ''; +} + + /***************************/ /* Main of read_body.php */ /***************************/ @@ -735,19 +744,23 @@ sqgetGlobalVar('username', $username, SQ_SESSION); sqgetGlobalVar('onetimepad',$onetimepad, SQ_SESSION); sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION); sqgetGlobalVar('base_uri', $base_uri, SQ_SESSION); - -sqgetGlobalVar('msgs', $msgs, SQ_SESSION); -sqgetGlobalVar('msort', $msort, SQ_SESSION); sqgetGlobalVar('lastTargetMailbox', $lastTargetMailbox, SQ_SESSION); -sqgetGlobalVar('server_sort_array', $server_sort_array, SQ_SESSION); if (!sqgetGlobalVar('messages', $messages, SQ_SESSION) ) { $messages = array(); } /** GET VARS */ sqgetGlobalVar('sendreceipt', $sendreceipt, SQ_GET); -sqgetGlobalVar('where', $where, SQ_GET); -sqgetGlobalVar('what', $what, SQ_GET); +if (!sqgetGlobalVar('where', $where, SQ_GET) ) { + $where = 'right_main.php'; +} +/* + * Used as entry key to the list of uid's cached in the mailbox cache + * we use the cached uid's to get the next and prev message. + */ +if (!sqgetGlobalVar('what', $what, SQ_GET) ){ + $what = 0; +} if ( sqgetGlobalVar('show_more', $temp, SQ_GET) ) { $show_more = (int) $temp; } @@ -761,6 +774,12 @@ if ( sqgetGlobalVar('view_hdr', $temp, SQ_GET) ) { $view_hdr = (int) $temp; } +if ( sqgetGlobalVar('account', $temp, SQ_GET) ) { + $iAccount = (int) $temp; +} else { + $iAccount = 0; +} + /** GET/POST VARS */ sqgetGlobalVar('passed_ent_id', $passed_ent_id); sqgetGlobalVar('mailbox', $mailbox); @@ -773,79 +792,130 @@ if ( sqgetGlobalVar('sort', $temp) ) { } if ( sqgetGlobalVar('startMessage', $temp) ) { $startMessage = (int) $temp; +} else { + $startMessage = 1; } +/** + * Retrieve mailbox cache + */ +sqgetGlobalVar('mailbox_cache',$mailbox_cache,SQ_SESSION); /* end of get globals */ -global $uid_support, $sqimap_capabilities, $lastTargetMailbox; +global $sqimap_capabilities, $lastTargetMailbox; $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); -$mbx_response = sqimap_mailbox_select($imapConnection, $mailbox, false, false, true); +$aMailbox = sqm_api_mailbox_select($imapConnection, $iAccount, $mailbox,array('setindex' => $what, 'offset' => $startMessage),array()); + /** - * Process Delete from delete-move-next - * but only if delete_id was set - */ -if ( sqgetGlobalVar('delete_id', $delete_id, SQ_GET) ) { - sqimap_messages_delete($imapConnection, $delete_id, $delete_id, $mailbox); + Start code to set the columns to fetch in case of hitting the next/prev link + The reason for this is the fact that the cache can be invalidated which means that the headers + to fetch aren't there anymore. Before they got calculated when the messagelist was shown. + + Todo, better central handling of setting the mailbox options so we do not need to do the stuff below +*/ - sqimap_mailbox_expunge_dmn($delete_id); +/** + * Replace From => To in case it concerns a draft or sent folder + */ +if (($mailbox == $sent_folder || $mailbox == $draft_folder) && + !in_array(SQM_COL_TO,$index_order)) { + $aNewOrder = array(); // nice var name ;) + foreach($index_order as $iCol) { + if ($iCol == SQM_COL_FROM) { + $iCol = SQM_COL_TO; + } + $aNewOrder[] = $iCol; + } + $aColumns = $aNewOrder; +} else { + $aColumns = $index_order; } +$aProps = array( + 'columns' => $aColumns, // columns bound settings + 'config' => array( + 'highlight_list' => $message_highlight_list, // row highlighting rules + 'trash_folder' => $trash_folder, + 'sent_folder' => $sent_folder, + 'draft_folder' => $draft_folder)); + +calcFetchColumns($aMailbox,$aProps); + +/** + End code to set the columns to fetch in case of hitting the next/prev link +*/ + + + /** - * Process Move from delete-move-next - * but only if move_id and target_mailbox were set + * Check if cache is still valid, $what contains the key + * which gives us acces to the array with uid's. At this moment + * 0 is used for a normal message list and search uses 1 as key. This can be + * changed / extended in the future. + * If on a select of a mailbox we detect that the cache should be invalidated due to + * the delete of messages or due to new messages we empty the list with uid's and + * that's what we detect below. */ -if ( sqgetGlobalVar('move_id', $move_id, SQ_POST) && - sqgetGlobalVar('targetMailbox', $targetMailbox, SQ_POST) ) { - // Move message - sqimap_messages_copy($imapConnection, $move_id, $move_id, $targetMailbox); - sqimap_messages_flag($imapConnection, $move_id, $move_id, 'Deleted', true); +if (!is_array($aMailbox['UIDSET'][$what])) { + fetchMessageHeaders($imapConnection, $aMailbox); +} - sqimap_mailbox_expunge_dmn($move_id); +$iSetIndex = $aMailbox['SETINDEX']; +$aMailbox['CURRENT_MSG'][$iSetIndex] = $passed_id; - if ($targetMailbox != $lastTargetMailbox) { - $lastTargetMailbox = $targetMailbox; - sqsession_register('lastTargetMailbox' , $lastTargetMailbox); - } +/** + * Update the seen state + * and ignore in_array('\\seen',$aMailbox['PERMANENTFLAGS'],true) + */ +if (isset($aMailbox['MSG_HEADERS'][$passed_id]['FLAGS'])) { + $aMailbox['MSG_HEADERS'][$passed_id]['FLAGS']['\\seen'] = true; } +/** + * Process Delete from delete-move-next + * but only if delete_id was set + */ +if ( sqgetGlobalVar('delete_id', $delete_id, SQ_GET) ) { + handleMessageListForm($imapConnection,$aMailbox,$sButton='setDeleted', array($delete_id)); +} /** * $message contains all information about the message * including header and body */ -$uidvalidity = $mbx_response['UIDVALIDITY']; - -if (!isset($messages[$uidvalidity])) { - $messages[$uidvalidity] = array(); -} -if (!isset($messages[$uidvalidity][$passed_id]) || !$uid_support) { - $message = sqimap_get_message($imapConnection, $passed_id, $mailbox); - $FirstTimeSee = !$message->is_seen; - $message->is_seen = true; - $messages[$uidvalidity][$passed_id] = $message; +if (isset($aMailbox['MSG_HEADERS'][$passed_id]['MESSAGE_OBJECT'])) { + $message = $aMailbox['MSG_HEADERS'][$passed_id]['MESSAGE_OBJECT']; + $FirstTimeSee = !$message->is_seen; } else { -// $message = sqimap_get_message($imapConnection, $passed_id, $mailbox); - $message = $messages[$uidvalidity][$passed_id]; - $FirstTimeSee = !$message->is_seen; + $message = sqimap_get_message($imapConnection, $passed_id, $mailbox); + $FirstTimeSee = !$message->is_seen; + $message->is_seen = true; + $aMailbox['MSG_HEADERS'][$passed_id]['MESSAGE_OBJECT'] = $message; } if (isset($passed_ent_id) && $passed_ent_id) { - $message = $message->getEntity($passed_ent_id); - if ($message->type0 != 'message' && $message->type1 != 'rfc822') { - $message = $message->parent; - } - $read = sqimap_run_command ($imapConnection, "FETCH $passed_id BODY[$passed_ent_id.HEADER]", true, $response, $msg, $uid_support); - $rfc822_header = new Rfc822Header(); - $rfc822_header->parseHeader($read); - $message->rfc822_header = $rfc822_header; + $message = $message->getEntity($passed_ent_id); + if ($message->type0 != 'message' && $message->type1 != 'rfc822') { + $message = $message->parent; + } + $read = sqimap_run_command ($imapConnection, "FETCH $passed_id BODY[$passed_ent_id.HEADER]", true, $response, $msg, TRUE); + $rfc822_header = new Rfc822Header(); + $rfc822_header->parseHeader($read); + $message->rfc822_header = $rfc822_header; +} else if ($message->type0 == 'message' && $message->type1 == 'rfc822' && isset($message->entities[0])) { + $read = sqimap_run_command ($imapConnection, "FETCH $passed_id BODY[1.HEADER]", true, $response, $msg, TRUE); + $rfc822_header = new Rfc822Header(); + $rfc822_header->parseHeader($read); + $message->rfc822_header = $rfc822_header; } else { - $passed_ent_id = 0; + $passed_ent_id = 0; } $header = $message->header; -do_hook('html_top'); +$header = $message->header; + /****************************************/ /* Block for handling incoming url vars */ @@ -854,24 +924,23 @@ do_hook('html_top'); if (isset($sendreceipt)) { if ( !$message->is_mdnsent ) { $final_recipient = ''; - if ((isset($identity)) && ($identity != 0)) //Main identity + if ((isset($identity)) && ($identity != 0)) //Main identity $final_recipient = trim(getPref($data_dir, $username, 'email_address' . $identity, '' )); if ($final_recipient == '' ) $final_recipient = trim(getPref($data_dir, $username, 'email_address', '' )); - $supportMDN = ServerMDNSupport($mbx_response["PERMANENTFLAGS"]); + $supportMDN = ServerMDNSupport($aMailbox["PERMANENTFLAGS"]); if ( SendMDN( $mailbox, $passed_id, $final_recipient, $message, $imapConnection ) > 0 && $supportMDN ) { - ToggleMDNflag( true, $imapConnection, $mailbox, $passed_id, $uid_support); + ToggleMDNflag( true, $imapConnection, $mailbox, $passed_id); $message->is_mdnsent = true; - $messages[$uidvalidity][$passed_id]=$message; + $aMailbox['MSG_HEADERS'][$passed_id]['MESSAGE_OBJECT'] = $message; } - ClearAttachments(); } } /***********************************************/ /* End of block for handling incoming url vars */ /***********************************************/ -$msgs[$passed_id]['FLAG_SEEN'] = true; + $messagebody = ''; do_hook('read_body_top'); @@ -884,13 +953,13 @@ $cnt = count($ent_ar); for ($i = 0; $i < $cnt; $i++) { $messagebody .= formatBody($imapConnection, $message, $color, $wrap_at, $ent_ar[$i], $passed_id, $mailbox); if ($i != $cnt-1) { - $messagebody .= '
'; + $messagebody .= '
'; } } -displayPageHeader($color, $mailbox); -formatMenuBar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_response); -formatEnvheader($mailbox, $passed_id, $passed_ent_id, $message, $color, $FirstTimeSee); +displayPageHeader($color, $mailbox,'',''); +formatMenuBar($aMailbox, $passed_id, $passed_ent_id, $message,false); +formatEnvheader($aMailbox, $passed_id, $passed_ent_id, $message, $color, $FirstTimeSee); echo ''; echo ' '; -echo ''."\n"; +echo ''."\n"; $attachmentsdisplay = formatAttachments($message,$ent_ar,$mailbox, $passed_id); if ($attachmentsdisplay) { @@ -916,7 +985,7 @@ if ($attachmentsdisplay) { echo '
'; echo ' '; @@ -898,17 +967,17 @@ echo ' '; echo '
'; echo ' '; echo ' '; +echo ' '; echo '
'; // echo ' '; -echo html_tag( 'table' ,'' , 'left', '', 'cellpadding="1" cellspacing="5" border="0"' ); -echo ' ' . html_tag( 'td', '
'. $messagebody."\n", 'left') +echo html_tag( 'table' ,'' , 'left', '', 'width="100%" cellpadding="1" cellspacing="5" border="0"' ); +echo ' ' . html_tag( 'td', '
'. $messagebody."\n", 'left') . ''; echo '
'; -echo '
'; echo '
'; echo '
'; echo ' '; - echo ' ' . html_tag( 'td', '', 'left', $color[9] ); + echo ' ' . html_tag( 'td', '', 'left', $color[9] ); echo ' ' . _("Attachments") . ':'; echo ' '; echo '
'; @@ -925,8 +994,8 @@ if ($attachmentsdisplay) { echo '
'; echo '
'; echo ' '; - echo ''; + echo ''; } echo ''; @@ -943,22 +1012,23 @@ if (($attachment_common_show_images) && echo html_tag( 'table', "\n" . html_tag( 'tr', "\n" . - html_tag( 'td', '' ."\n", 'left' + html_tag( 'td', '' ."\n", 'left' ) ) , - 'center', '', 'cellspacing=0 border="0" cellpadding="2"'); + 'center', '', 'cellspacing="0" border="0" cellpadding="2"'); } } -formatMenuBar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_response, FALSE); +formatMenuBar($aMailbox, $passed_id, $passed_ent_id, $message, false, FALSE); do_hook('read_body_bottom'); -do_hook('html_bottom'); sqimap_logout($imapConnection); -/* sessions are written at the end of the script. it's better to register - them at the end so we avoid double session_register calls */ -sqsession_register($messages,'messages'); + +/** + * Write mailbox with updated seen flag information back to cache. + */ +$mailbox_cache[$iAccount.'_'.$aMailbox['NAME']] = $aMailbox; +sqsession_register($mailbox_cache,'mailbox_cache'); ?> - - +