X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fread_body.php;h=f32330b1bd2993b404444390d510c3185124d574;hb=d8415ed878ea9a1a48879622d2ac674e9856d6bd;hp=916df1679ecc14e2ac9c91b5bf559bd2ec68f83a;hpb=48dc9174a0a3737d68d0c5e0a4e85185a6739019;p=squirrelmail.git diff --git a/src/read_body.php b/src/read_body.php index 916df167..f32330b1 100644 --- a/src/read_body.php +++ b/src/read_body.php @@ -3,17 +3,20 @@ /** * read_body.php * - * Copyright (c) 1999-2003 The SquirrelMail Project Team + * Copyright (c) 1999-2005 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$ + * @version $Id$ * @package squirrelmail */ -/** Path for SquirrelMail required files. */ +/** + * Path for SquirrelMail required files. + * @ignore + */ define('SM_PATH','../'); /* SquirrelMail required files. */ @@ -35,38 +38,22 @@ 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; +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 = -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; - } - } - } 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; - } - } + $count = count($uidset) - 1; + foreach($uidset as $key=>$value) { + if ($passed_id == $value) { + if ($key == $count) { + break; } + $result = $uidset[$key + 1]; + break; } } return $result; @@ -79,39 +66,21 @@ 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; + +function findPreviousMessage($uidset, $passed_id) { + if (!is_array($uidset)) { + return -1; + } $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; - } - } - } 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; - } - } + foreach($uidset as $key=>$value) { + if ($passed_id == $value) { + if ($key != 0) { + $result = $uidset[$key - 1]; } + break; } } + return $result; } @@ -119,14 +88,21 @@ function findPreviousMessage($numMessages, $passed_id) { * 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; - $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; $print_text = _("View Printable Version"); @@ -149,22 +125,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 +190,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 +208,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 +261,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,7 +273,7 @@ function SendMDN ( $mailbox, $passed_id, $sender, $message, $imapConnection) { $success = $deliver->finalizeStream($stream); } if (!$success) { - $msg = $deliver->dlv_msg . '
' . + $msg = $deliver->dlv_msg . '
' . _("Server replied: ") . $deliver->dlv_ret_nr . ' '. $deliver->dlv_server_msg; require_once(SM_PATH . 'functions/display_messages.php'); @@ -316,11 +292,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); + $read = sqimap_run_command ($imapConnection, $cmd, true, $response, + $readmessage, TRUE); } function ClearAttachments() { @@ -330,16 +306,16 @@ function ClearAttachments() { $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; - } - } + 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; } @@ -379,15 +355,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 +373,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 +408,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 +433,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, $delete_prev_next_display; + $username, $delete_prev_next_display, + $compose_new_win, $javascript_on; + + //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. @@ -555,14 +531,21 @@ function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_resp $nav_row .= $double_delimiter . '['._("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)) ) { + /** + * Check if cache is still valid + */ + if (!is_array($aMailbox['UIDSET'][$what])) { + fetchMessageHeaders($imapConnection, $aMailbox); + } + $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,20 +554,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. - 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"); @@ -592,6 +578,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.''; } @@ -603,13 +590,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 . @@ -619,81 +604,104 @@ 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 ( $javascript_on ) { + $on_click=' onclick="comp_in_new_form(\''.$comp_uri.'\', this, this.form)"'; + $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"; @@ -701,15 +709,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. */ @@ -717,8 +737,8 @@ 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; } @@ -734,19 +754,19 @@ 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'; +} +if (!sqgetGlobalVar('what', $what, SQ_GET) ){ + $what = 0; +} if ( sqgetGlobalVar('show_more', $temp, SQ_GET) ) { $show_more = (int) $temp; } @@ -772,79 +792,67 @@ 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, $mailbox,array('setindex' => $what),array()); /** - * Process Delete from delete-move-next - * but only if delete_id was set + * Update the seen state + * and ignore in_array('\\seen',$aMailbox['PERMANENTFLAGS'],true) */ -if ( sqgetGlobalVar('delete_id', $delete_id, SQ_GET) ) { - sqimap_messages_delete($imapConnection, $delete_id, $delete_id, $mailbox); - - sqimap_mailbox_expunge_dmn($delete_id); +if (isset($aMailbox['MSG_HEADERS'][$passed_id]['FLAGS'])) { + $aMailbox['MSG_HEADERS'][$passed_id]['FLAGS']['\\seen'] = true; } /** - * Process Move from delete-move-next - * but only if move_id and target_mailbox were set + * Process Delete from delete-move-next + * but only if delete_id was set */ -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); - - sqimap_mailbox_expunge_dmn($move_id); - - if ($targetMailbox != $lastTargetMailbox) { - $lastTargetMailbox = $targetMailbox; - sqsession_register('lastTargetMailbox' , $lastTargetMailbox); - } +if ( sqgetGlobalVar('delete_id', $delete_id, SQ_GET) ) { + handleMessageListForm($imapConnection,$aMailbox,$sButton='setDeleted', array($delete_id)); +// sqimap_messages_delete($imapConnection, $delete_id, $delete_id, $mailbox); +// sqimap_mailbox_expunge_dmn($imapConnection,$aMailbox,$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 { - $passed_ent_id = 0; + $passed_ent_id = 0; } $header = $message->header; -do_hook('html_top'); /****************************************/ /* Block for handling incoming url vars */ @@ -853,15 +861,15 @@ 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(); } @@ -870,7 +878,7 @@ if (isset($sendreceipt)) { /* End of block for handling incoming url vars */ /***********************************************/ -$msgs[$passed_id]['FLAG_SEEN'] = true; + $messagebody = ''; do_hook('read_body_top'); @@ -883,13 +891,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); +formatMenuBar($aMailbox, $passed_id, $passed_ent_id, $message,false); +formatEnvheader($aMailbox, $passed_id, $passed_ent_id, $message, $color, $FirstTimeSee); echo ''; echo ' '; echo '
'; echo ' '; @@ -898,16 +906,16 @@ 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( 'td', '
'. $messagebody."\n", 'left') . ''; echo '
'; -echo '
'; echo ' '; -echo ''."\n"; +echo ''."\n"; $attachmentsdisplay = formatAttachments($message,$ent_ar,$mailbox, $passed_id); if ($attachmentsdisplay) { @@ -915,7 +923,7 @@ if ($attachmentsdisplay) { echo ' '; echo '
'; echo ' '; - echo ' ' . html_tag( 'td', '', 'left', $color[9] ); + echo ' ' . html_tag( 'td', '', 'left', $color[9] ); echo ' ' . _("Attachments") . ':'; echo ' '; echo '
'; @@ -924,8 +932,8 @@ if ($attachmentsdisplay) { echo '
'; echo '
'; echo ' '; - echo ''; + echo ''; } echo ''; @@ -942,22 +950,21 @@ 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 +/* 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'); - +/* add the mailbox to the cache */ +$mailbox_cache[$aMailbox['NAME']] = $aMailbox; +sqsession_register($mailbox_cache,'mailbox_cache'); ?> - - + \ No newline at end of file