X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fread_body.php;h=f16629780bdd26887147ab06fbd1536c9d029a53;hb=7c8b7b4febe9826a75f0440360d275b6eed34f43;hp=18005a018c934e6c2a3b8de8a4fbbd0368bb38d0;hpb=b0817999a4178ee74e228ef29807b572adedb132;p=squirrelmail.git diff --git a/src/read_body.php b/src/read_body.php index 18005a01..f1662978 100644 --- a/src/read_body.php +++ b/src/read_body.php @@ -3,7 +3,7 @@ /** * read_body.php * - * Copyright (c) 1999-2002 The SquirrelMail Project Team + * 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 @@ -23,7 +23,6 @@ require_once(SM_PATH . 'functions/date.php'); require_once(SM_PATH . 'functions/url_parser.php'); require_once(SM_PATH . 'functions/html.php'); - /** * Given an IMAP message id number, this will look it up in the cached * and sorted msgs array and return the index. Used for finding the next @@ -121,18 +120,18 @@ function printer_friendly_link($mailbox, $passed_id, $passed_ent_id, $color) { $result = ''; /* Output the link. */ if ($javascript_on) { - $result .= '\n" . - "$print_text\n"; + $result = '\n" . + "$print_text\n"; } else { - $result .= '$print_text\n"; + $result = '$print_text\n"; } return $result; } @@ -270,18 +269,18 @@ 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, $use_authenticated_smtp, $pop_before_smtp; - if ($use_authenticated_smtp) { + global $smtpServerAddress, $smtpPort, $smtp_auth_mech, $pop_before_smtp; + if ($smtp_auth_mech == 'none') { + $user = ''; + $pass = ''; + } else { global $key, $onetimepad; $user = $username; $pass = OneTimePadDecrypt($key, $onetimepad); - } else { - $user = ''; - $pass = ''; } $authPop = (isset($pop_before_smtp) && $pop_before_smtp) ? true : false; $stream = $deliver->initStream($composeMessage,$domain,0, - $smtpServerAddress, $smtpPort, $authPop); + $smtpServerAddress, $smtpPort, $user, $pass, $authPop); } $success = false; if ($stream) { @@ -289,7 +288,9 @@ 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); } else { @@ -306,7 +307,6 @@ function SendMDN ( $mailbox, $passed_id, $sender, $message, $imapConnection) { return $success; } - function ToggleMDNflag ($set ,$imapConnection, $mailbox, $passed_id, $uid_support) { $sg = $set?'+':'-'; $cmd = 'STORE ' . $passed_id . ' ' . $sg . 'FLAGS ($MDNSent)'; @@ -320,15 +320,17 @@ function ClearAttachments() { $hashed_attachment_dir = getHashedDir($username, $attachment_dir); $rem_attachments = array(); - 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; - } + 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; } @@ -366,7 +368,7 @@ function formatRecipientString($recipients, $item ) { $cnt = count($recipients); foreach($recipients as $r) { - $add = htmlspecialchars($r->getAddress()); + $add = htmlspecialchars(decodeHeader($r->getAddress())); if ($string) { $string .= '
' . $add; } else { @@ -388,13 +390,13 @@ function formatRecipientString($recipients, $item ) { function formatEnvheader($mailbox, $passed_id, $passed_ent_id, $message, $color, $FirstTimeSee) { - global $msn_user_support, $default_use_mdn, $draft_folder, $sent_folder, - $default_use_priority, $show_xmailer_default, - $mdn_user_support, $PHP_SELF, $javascript_on; + global $msn_user_support, $default_use_mdn, $default_use_priority, + $show_xmailer_default, $mdn_user_support, $PHP_SELF, $javascript_on, + $squirrelmail_language; $header = $message->rfc822_header; $env = array(); - $env[_("Subject")] = htmlspecialchars(decodeHeader($header->subject)); + $env[_("Subject")] = htmlspecialchars(decodeHeader($header->subject)); $from_name = $header->getAddr_s('from'); if (!$from_name) { $from_name = $header->getAddr_s('sender'); @@ -408,10 +410,10 @@ function formatEnvheader($mailbox, $passed_id, $passed_ent_id, $message, $env[_("Cc")] = formatRecipientString($header->cc, "cc"); $env[_("Bcc")] = formatRecipientString($header->bcc, "bcc"); if ($default_use_priority) { - $env[_("Priority")] = getPriorityStr($header->priority); + $env[_("Priority")] = htmlspecialchars(getPriorityStr($header->priority)); } if ($show_xmailer_default) { - $env[_("Mailer")] = decodeHeader($header->xmailer); + $env[_("Mailer")] = htmlspecialchars(decodeHeader($header->xmailer)); } if ($default_use_mdn) { if ($mdn_user_support) { @@ -420,8 +422,7 @@ function formatEnvheader($mailbox, $passed_id, $passed_ent_id, $message, $env[_("Read receipt")] = _("send"); } else { $env[_("Read receipt")] = _("requested"); - if (!($mailbox == $draft_folder || - $mailbox == $sent_folder || + if (!(handleAsSent($mailbox) || $message->is_deleted || $passed_ent_id)) { $mdn_url = $PHP_SELF . '&sendreceipt=1'; @@ -457,9 +458,10 @@ function formatEnvheader($mailbox, $passed_id, $passed_ent_id, $message, } echo ''."\n"; - echo '
'."\n"; + echo '
'."\n"; echo $s; - do_hook("read_body_header"); + do_hook('read_body_header'); formatToolbar($mailbox, $passed_id, $passed_ent_id, $message, $color); echo '
'; echo ''."\n"; @@ -467,14 +469,15 @@ function formatEnvheader($mailbox, $passed_id, $passed_ent_id, $message, } function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_response) { - global $base_uri, $sent_folder, $draft_folder, $where, $what, $color, $sort, + global $base_uri, $draft_folder, $where, $what, $color, $sort, $startMessage, $compose_new_win, $PHP_SELF, $save_as_draft, $enable_forward_as_attachment; $topbar_delimiter = ' | '; $urlMailbox = urlencode($mailbox); $s = '' . + html_tag( 'td', '', 'left', '', 'width="33%"' ) . ''; $msgs_url = $base_uri . 'src/'; if (isset($where) && isset($what)) { @@ -487,7 +490,6 @@ function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_resp $msgs_str = _("Message List"); } $s .= '' . $msgs_str . ''; - $s .= $topbar_delimiter; $delete_url = $base_uri . 'src/delete_message.php?mailbox=' . $urlMailbox . '&message=' . $passed_id . '&'; @@ -497,6 +499,7 @@ function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_resp } else { $delete_url .= 'sort=' . $sort . '&startMessage=' . $startMessage; } + $s .= $topbar_delimiter; $s .= '' . _("Delete") . ''; } @@ -515,7 +518,7 @@ function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_resp if (($mailbox == $draft_folder) && ($save_as_draft)) { $comp_alt_uri = $comp_uri . '&action=draft'; $comp_alt_string = _("Resume Draft"); - } else if ($mailbox == $sent_folder) { + } else if (handleAsSent($mailbox)) { $comp_alt_uri = $comp_uri . '&action=edit_as_new'; $comp_alt_string = _("Edit Message as New"); } @@ -550,6 +553,32 @@ function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_resp /* code for navigating through attached message/rfc822 messages */ $url = set_url_var($PHP_SELF, 'passed_ent_id',0); $s .= ''._("View Message").''; + $entities = array(); + $entity_count = array(); + $c = 0; + + foreach($message->parent->entities as $ent) { + if ($ent->type0 == 'message' && $ent->type1 == 'rfc822') { + $c++; + $entity_count[$c] = $ent->entity_id; + $entities[$ent->entity_id] = $c; + } + } + $prev_link = _("Previous"); + $next_link = _("Next"); + if($entities[$passed_ent_id] > 1) { + $prev_ent_id = $entity_count[$entities[$passed_ent_id] - 1]; + $prev_link = '' . $prev_link . ''; + } + if($entities[$passed_ent_id] < $c) { + $next_ent_id = $entity_count[$entities[$passed_ent_id] + 1]; + $next_link = '' . $next_link . ''; + } + $s .= $topbar_delimiter . $prev_link; $par_ent_id = $message->parent->entity_id; if ($par_ent_id) { $par_ent_id = substr($par_ent_id,0,-2); @@ -557,24 +586,26 @@ function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_resp $url = set_url_var($PHP_SELF, 'passed_ent_id',$par_ent_id); $s .= ''._("Up").''; } + $s .= $topbar_delimiter . $next_link; } - $s .= '' . "\n" . '' . "\n" . + html_tag( 'td', '', 'right', '', 'width="33%" nowrap' ) . ''; $comp_action_uri = $comp_uri . '&action=forward'; $s .= $link_open . $comp_action_uri . $link_close . _("Forward") . ''; - $s .= $topbar_delimiter; if ($enable_forward_as_attachment) { $comp_action_uri = $comp_uri . '&action=forward_as_attachment'; - $s .= $link_open . $comp_action_uri . $link_close . _("Forward as Attachment") . ''; $s .= $topbar_delimiter; + $s .= $link_open . $comp_action_uri . $link_close . _("Forward as Attachment") . ''; } $comp_action_uri = decodeHeader($comp_uri . '&action=reply'); - $s .= $link_open . $comp_action_uri . $link_close . _("Reply") . ''; $s .= $topbar_delimiter; + $s .= $link_open . $comp_action_uri . $link_close . _("Reply") . ''; $comp_action_uri = $comp_uri . '&action=reply_all'; + $s .= $topbar_delimiter; $s .= $link_open . $comp_action_uri . $link_close . _("Reply All") . ''; $s .= '
'; + ' border="0" bgcolor="'.$color[9].'">
'; + $s .= '
'; do_hook("read_body_menu_top"); @@ -589,8 +620,8 @@ function formatToolbar($mailbox, $passed_id, $passed_ent_id, $message, $color) { $url = $base_uri.'src/view_header.php?'.$_SERVER['QUERY_STRING']; $s = "\n" . - '' . _("Options") . ":  \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. */ @@ -610,18 +641,18 @@ function formatToolbar($mailbox, $passed_id, $passed_ent_id, $message, $color) { /* get the globals we may need */ -$username = $_SESSION['username']; -$key = $_COOKIE['key']; +$username = $_SESSION['username']; +$key = $_COOKIE['key']; $onetimepad = $_SESSION['onetimepad']; -$msgs = $_SESSION['msgs']; -$base_uri = $_SESSION['base_uri']; -$delimiter = $_SESSION['delimiter']; +$msgs = $_SESSION['msgs']; +$base_uri = $_SESSION['base_uri']; +$delimiter = $_SESSION['delimiter']; if (isset($_GET['passed_id'])) { - $passed_id = $_GET['passed_id']; + $passed_id = (int) $_GET['passed_id']; } elseif (isset($_POST['passed_id'])) { - $passed_id = $_POST['passed_id']; + $passed_id = (int) $_POST['passed_id']; } if (isset($_GET['passed_ent_id'])) { @@ -636,25 +667,25 @@ if (isset($_GET['sendreceipt'])) { } if (isset($_GET['sort'])) { - $sort = $_GET['sort']; + $sort = (int) $_GET['sort']; } elseif (isset($_POST['sort'])) { - $sort = $_POST['sort']; + $sort = (int) $_POST['sort']; } if (isset($_GET['startMessage'])) { - $startMessage = $_GET['startMessage']; + $startMessage = (int) $_GET['startMessage']; } elseif (isset($_POST['startMessage'])) { - $startMessage = $_POST['startMessage']; + $startMessage = (int) $_POST['startMessage']; } if (isset($_GET['show_more'])) { - $show_more = $_GET['show_more']; + $show_more = (int) $_GET['show_more']; } if (isset($_GET['show_more_cc'])) { - $show_more_cc = $_GET['show_more_cc']; + $show_more_cc = (int) $_GET['show_more_cc']; } if (isset($_GET['show_more_bcc'])) { - $show_more_bcc = $_GET['show_more_bcc']; + $show_more_bcc = (int) $_GET['show_more_bcc']; } if (isset($_GET['mailbox'])) { $mailbox = $_GET['mailbox']; @@ -669,7 +700,7 @@ if (isset($_GET['what'])) { $what = $_GET['what']; } if (isset($_GET['view_hdr'])) { - $view_hdr = $_GET['view_hdr']; + $view_hdr = (int) $_GET['view_hdr']; } if (isset($_SESSION['server_sort_array'])) { $server_sort_array = $_SESSION['server_sort_array']; @@ -702,7 +733,7 @@ if (isset($mailbox)) { } $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); -$mbx_response = sqimap_mailbox_select($imapConnection, $mailbox, false, false, true); +$mbx_response = sqimap_mailbox_select($imapConnection, $mailbox, false, false, true); /** @@ -711,10 +742,10 @@ $mbx_response = sqimap_mailbox_select($imapConnection, $mailbox, false, false, t */ $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; @@ -772,8 +803,8 @@ if (isset($sendreceipt)) { /***********************************************/ $msgs[$passed_id]['FLAG_SEEN'] = true; - -$messagebody = ''; + +$messagebody = ''; do_hook('read_body_top'); if ($show_html_default == 1) { $ent_ar = $message->findDisplayEntity(array()); @@ -787,16 +818,6 @@ for ($i = 0; $i < $cnt; $i++) { $messagebody .= '
'; } } -$UIpref = 'captbunzo'; -/* handy preference utility to easy switch between preferences */ -if ($UIpref== 'captbunzo') { - $align= 'center'; - $vert_lines= ''; -// $vert_lines = ''; /* test! Delete it when you are not satisfied */ -} else { - $align= 'left'; - $vert_lines = ''; -} displayPageHeader($color, $mailbox); formatMenuBar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_response); @@ -807,32 +828,38 @@ echo ' '; echo '
'; echo ' '; echo ' '; echo '
'; -echo ' '; -echo ' '.$vert_lines. html_tag( 'td', '
'. $messagebody."\n", 'left') - .$vert_lines.''; +// echo '
'; +echo html_tag( 'table' ,'' , 'left', '', 'cellpadding="1" cellspacing="5" border="0"' ); +echo ' ' . html_tag( 'td', '
'. $messagebody."\n", 'left') + . ''; echo '
'; echo '
'; echo ' '; +echo ''."\n"; + $attachmentsdisplay = formatAttachments($message,$ent_ar,$mailbox, $passed_id); if ($attachmentsdisplay) { echo ' '; echo ' '; echo ' '; - echo '
'; - echo ' '; - echo ' '; - echo '
'; + echo ' '; + // echo ' ' . html_tag( 'td', '', 'left', $color[9] ); echo ' ' . _("Attachments") . ':'; echo ' '; echo '
'; + echo '
'; echo '
'; echo $attachmentsdisplay; echo '
'; - echo '
'; + echo ' '; + echo ' '; echo ' '; + echo ''; } echo '';