minor fix to in displaying attachments
[squirrelmail.git] / src / read_body.php
CommitLineData
59177427 1<?php
895905c0 2
35586184 3/**
4 * read_body.php
5 *
15e6162e 6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
35586184 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This file is used for reading the msgs array and displaying
10 * the resulting emails in the right frame.
11 *
12 * $Id$
a07cd1a4 13 */
35586184 14
15require_once('../src/validate.php');
16require_once('../functions/imap.php');
17require_once('../functions/mime.php');
18require_once('../functions/date.php');
19require_once('../functions/url_parser.php');
57257333 20require_once('../functions/smtp.php');
fab3baa6 21require_once('../functions/html.php');
978d53dc 22require_once('../class/html.class.php');
38c944cc 23require_once('../src/view_header.php');
24
a07cd1a4 25/**
1fca12b5 26 * Given an IMAP message id number, this will look it up in the cached
27 * and sorted msgs array and return the index. Used for finding the next
28 * and previous messages.
29 *
30 * @return the index of the next valid message from the array
31 */
a07cd1a4 32function findNextMessage() {
92592f0e 33 global $msort, $currentArrayIndex, $msgs, $sort,
cf710efe 34 $thread_sort_messages, $allow_server_sort,
60a3e687 35 $server_sort_array;
2728fa19 36 if (!is_array($server_sort_array)) {
37 $thread_sort_messages = 0;
794d59c0 38 $allow_server_sort = FALSE;
2728fa19 39 }
a07cd1a4 40 $result = -1;
794d59c0 41 if ($thread_sort_messages == 1 || $allow_server_sort == TRUE) {
60a3e687 42 reset($server_sort_array);
43 while(list($key, $value) = each ($server_sort_array)) {
44 if ($currentArrayIndex == $value) {
1fca12b5 45 if ($key == (count($server_sort_array) - 1)) {
60a3e687 46 $result = -1;
47 break;
48 }
1fca12b5 49 $result = $server_sort_array[$key + 1];
60a3e687 50 break;
789b4d79 51 }
60a3e687 52 }
1fca12b5 53 }
794d59c0 54 elseif ($sort == 6 && $allow_server_sort != TRUE &&
cf710efe 55 $thread_sort_messages != 1) {
a07cd1a4 56 if ($currentArrayIndex != 1) {
57 $result = $currentArrayIndex - 1;
58 }
1fca12b5 59 }
794d59c0 60 elseif ($allow_server_sort != TRUE && $thread_sort_messages != 1 ) {
75ef78d8 61 if (!is_array($msort)) {
62 return -1;
63 }
a07cd1a4 64 for (reset($msort); ($key = key($msort)), (isset($key)); next($msort)) {
65 if ($currentArrayIndex == $msgs[$key]['ID']) {
66 next($msort);
67 $key = key($msort);
1fca12b5 68 if (isset($key)){
a07cd1a4 69 $result = $msgs[$key]['ID'];
70 break;
1fca12b5 71 }
10f0ce72 72 }
73 }
10f0ce72 74 }
a07cd1a4 75 return ($result);
76}
77
a07cd1a4 78/** returns the index of the previous message from the array. */
79function findPreviousMessage() {
57257333 80 global $msort, $currentArrayIndex, $sort, $msgs, $imapConnection,
cf710efe 81 $mailbox, $data_dir, $username, $thread_sort_messages,
60a3e687 82 $allow_server_sort, $server_sort_array;
a07cd1a4 83 $result = -1;
2728fa19 84 if (!is_array($server_sort_array)) {
85 $thread_sort_messages = 0;
794d59c0 86 $allow_server_sort = FALSE;
2728fa19 87 }
794d59c0 88 if ($thread_sort_messages == 1 || $allow_server_sort == TRUE) {
60a3e687 89 reset($server_sort_array);
90 while(list($key, $value) = each ($server_sort_array)) {
91 if ($currentArrayIndex == $value) {
92 if ($key == 0) {
93 $result = -1;
94 break;
95 }
96 $result = $server_sort_array[$key -1];
97 break;
789b4d79 98 }
60a3e687 99 }
789b4d79 100 }
794d59c0 101 elseif ($sort == 6 && $allow_server_sort != TRUE &&
cf710efe 102 $thread_sort_messages != 1) {
a07cd1a4 103 $numMessages = sqimap_get_num_messages($imapConnection, $mailbox);
104 if ($currentArrayIndex != $numMessages) {
105 $result = $currentArrayIndex + 1;
106 }
60a3e687 107 }
794d59c0 108 elseif ($thread_sort_messages != 1 && $allow_server_sort != TRUE) {
1fca12b5 109 if (!is_array($msort)) {
75ef78d8 110 return -1;
1fca12b5 111 }
a07cd1a4 112 for (reset($msort); ($key = key($msort)), (isset($key)); next($msort)) {
113 if ($currentArrayIndex == $msgs[$key]['ID']) {
114 prev($msort);
115 $key = key($msort);
116 if (isset($key)) {
117 $result = $msgs[$key]['ID'];
118 break;
10f0ce72 119 }
120 }
10f0ce72 121 }
a07cd1a4 122 }
123 return ($result);
124}
10f0ce72 125
a07cd1a4 126/**
1fca12b5 127 * Displays a link to a page where the message is displayed more
128 * "printer friendly".
129 */
a07cd1a4 130function printer_friendly_link() {
57257333 131 global $passed_id, $mailbox, $ent_num, $color,
132 $pf_subtle_link,
133 $javascript_on;
a07cd1a4 134
135 if (strlen(trim($mailbox)) < 1) {
136 $mailbox = 'INBOX';
137 }
10f0ce72 138
57257333 139 $params = '?passed_ent_id=' . $ent_num .
1fca12b5 140 '&mailbox=' . urlencode($mailbox) .
141 '&passed_id=' . $passed_id;
10f0ce72 142
a07cd1a4 143 $print_text = _("View Printable Version");
10f0ce72 144
a07cd1a4 145 if (!$pf_subtle_link) {
146 /* The link is large, on the bottom of the header panel. */
b5058e9e 147 $result = html_tag( 'tr', '', '', $color[0] ) .
148 html_tag( 'td', '&nbsp;', 'right', '', 'class="medText" valign="top"' ) .
149 html_tag( 'td', '', 'left', '', 'class="medText" valign="top" colspan="2"' ) . "\n";
a07cd1a4 150 } else {
151 /* The link is subtle, below "view full header". */
5200c026 152 $result = "\n";
a07cd1a4 153 }
10f0ce72 154
a07cd1a4 155 /* Output the link. */
156 if ($javascript_on) {
3d570ba0 157 $result .= '<script language="javascript" type="text/javascript">' . "\n" .
a07cd1a4 158 '<!--' . "\n" .
159 " function printFormat() {\n" .
160 ' window.open("../src/printer_friendly_main.php' .
6a108031 161 $params . '","Print","width=800","height=600");' . "\n".
a07cd1a4 162 " }\n" .
163 "// -->\n" .
164 "</script>\n" .
b5058e9e 165 "<a href=\"javascript:printFormat();\">$print_text</a>\n";
a07cd1a4 166 } else {
b5058e9e 167 $result .= '<A target="_blank" HREF="../src/printer_friendly_bottom.php' .
168 "$params\">$print_text</a>\n";
a07cd1a4 169 }
10f0ce72 170
a07cd1a4 171 if (!$pf_subtle_link) {
172 /* The link is large, on the bottom of the header panel. */
57257333 173 $result .= '</td></tr>' . "\n";
10f0ce72 174 }
175
a07cd1a4 176 return ($result);
177}
178
57257333 179function ServerMDNSupport( $read ) {
f69feefe 180 /* escaping $ doesn't work -> \x36 */
181 $ret = preg_match( '/(\x36MDNSent|\\\*)/i', $read );
57257333 182 return ( $ret );
183}
184
5200c026 185function SendMDN ( $sender, $message) {
57257333 186 global $imapConnection, $mailbox, $username, $attachment_dir, $SERVER_NAME,
187 $version, $attachments, $identity, $data_dir, $passed_id;
188
5200c026 189 $header = $message->header;
57257333 190 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
5200c026 191
192 $recipient_o = $header->dnt;
193 $recipient = $recipient_o->getAddress(true);
57257333 194
195 // part 1 (RFC2298)
196
197 $senton = getLongDateString( $header->date );
198 $to_array = $header->to;
199 $to = '';
200 foreach ($to_array as $line) {
201 $to .= " $line ";
202 }
203
204 $subject = $header->subject;
205 $now = getLongDateString( time() );
46bb8da8 206
78db1583 207 set_my_charset();
208
46bb8da8 209 $body = _("Your message") . "\r\n\r\n" .
210 "\t" . _("To:") . ' ' . $to . "\r\n" .
211 "\t" . _("Subject:") . ' ' . $subject . "\r\n" .
212 "\t" . _("Sent:") . ' ' . $senton . "\r\n" .
213 "\r\n" .
214 sprintf( _("Was displayed on %s"), $now );
f69feefe 215
57257333 216 // part2 (RFC2298)
217
218 $original_recipient = $to;
219 $original_message_id = $header->message_id;
220
221 $part2 = "Reporting-UA : $SERVER_NAME ; SquirrelMail (version $version) \r\n";
222 if ($original_recipient != '') {
223 $part2 .= "Original-Recipient : $original_recipient\r\n";
224 }
225 $final_recipient = $sender;
226 $part2 .= "Final-Recipient: rfc822; $final_recipient\r\n" .
227 "Original-Message-ID : $original_message_id\r\n" .
228 "Disposition: manual-action/MDN-sent-manually; displayed\r\n";
229
230
231 $localfilename = GenerateRandomString(32, 'FILE', 7);
232 $full_localfilename = "$hashed_attachment_dir/$localfilename";
233
234 $fp = fopen( $full_localfilename, 'w');
235 fwrite ($fp, $part2);
236 fclose($fp);
237
238 $newAttachment = array();
239 $newAttachment['localfilename'] = $localfilename;
240 $newAttachment['type'] = "message/disposition-notification";
aa866a40 241 $newAttachment['session']=-1;
57257333 242 $attachments[] = $newAttachment;
5200c026 243
57257333 244 $reply_id = 0;
245
5200c026 246 return (SendMessage($recipient, '', '', _("Read:") . ' ' . $subject,
1fca12b5 247 $body, $reply_id, True, 3, -1) );
57257333 248}
249
250
251function ToggleMDNflag ( $set ) {
507d14ea 252 global $imapConnection, $passed_id, $mailbox, $uid_support;
f69feefe 253 sqimap_mailbox_select($imapConnection, $mailbox);
0892e427 254 $sg = $set?'+':'-';
255 $cmd = 'STORE ' . $passed_id . ' ' . $sg . 'FLAGS ($MDNSent)';
0892e427 256 $read = sqimap_run_command ($imapConnection, $cmd, true, $response,
507d14ea 257 $readmessage, $uid_support);
57257333 258}
259
260function ClearAttachments() {
261 global $username, $attachments, $attachment_dir;
262
263 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
264
aa866a40 265 $rem_attachments = array();
57257333 266 foreach ($attachments as $info) {
b2c19764 267 if ($info['session'] == -1) {
aa866a40 268 $attached_file = "$hashed_attachment_dir/$info[localfilename]";
269 if (file_exists($attached_file)) {
270 unlink($attached_file);
271 }
272 } else {
273 $rem_attachments[] = $info;
274 }
275 }
68c3b52a 276 $attachments = $rem_attachments;
57257333 277}
278
4d0cd98b 279function formatRecipientString($recipients, $item ) {
1fca12b5 280 global $base_uri, $passed_id, $urlMailbox, $startMessage, $show_more_cc,
38c944cc 281 $echo_more, $echo_less, $show_more, $show_more_bcc, $sort, $passed_ent_id,
282 $PHP_SELF;
4d0cd98b 283
284 $i = 0;
38c944cc 285 $url_string = '';
286 if ((is_array($recipients)) && (isset($recipients[0]))) {
1fca12b5 287 $string = '';
4d0cd98b 288 $ary = $recipients;
38c944cc 289 $show = false;
290
291 if ($item == 'to') {
292 if ($show_more) {
293 $show = true;
294 $url = set_url_var($PHP_SELF, 'show_more',0);
295 } else {
296 $url = set_url_var($PHP_SELF, 'show_more',1);
297 }
298 } else if ($item == 'cc') {
299 if ($show_more_cc) {
300 $url = set_url_var($PHP_SELF, 'show_more_cc',0);
301 $show = true;
302 } else {
303 $url = set_url_var($PHP_SELF, 'show_more_cc',1);
304 }
305 } else if ($item == 'bcc') {
306 if ($show_more_bcc) {
307 $url = set_url_var($PHP_SELF, 'show_more_bcc',0);
308 $show = true;
309 } else {
310 $url = set_url_var($PHP_SELF, 'show_more_bcc',1);
311 }
312 }
4d0cd98b 313
38c944cc 314 $cnt = count($ary);
315 while ($i < $cnt) {
6a108031 316 $ary[$i] = decodeHeader(htmlspecialchars($ary[$i]->getAddress()));
4d0cd98b 317 $url_string .= $ary[$i];
318 if ($string) {
38c944cc 319 $string .= '<BR>'.$ary[$i];
4d0cd98b 320 } else {
38c944cc 321 $string = $ary[$i];
322 if ($cnt>1) {
323 $string .= '&nbsp;(<A HREF="'.$url;
324 if ($show) {
325 $string .= '">'.$echo_less.'</A>)';
326 } else {
327 $string .= '">'.$echo_more.'</A>)';
328 break;
329 }
330 }
4d0cd98b 331 }
4d0cd98b 332 $i++;
1fca12b5 333 }
4d0cd98b 334 }
335 else {
1fca12b5 336 $string = '';
4d0cd98b 337 }
338 $url_string = urlencode($url_string);
339 $result = array();
340 $result['str'] = $string;
341 $result['url_str'] = $url_string;
342 return $result;
343}
344
345
57257333 346/*
347 * Main of read_boby.php --------------------------------------------------
348 */
349
350/*
351 Urled vars
352 ----------
353 $passed_id
354*/
a07cd1a4 355
38c944cc 356global $uid_support, $sqimap_capabilities;
357
6a108031 358if (isset($mailbox)) {
4366bea4 359 $mailbox = urldecode( $mailbox );
360}
38c944cc 361
1fca12b5 362$imapConnection = sqimap_login($username, $key, $imapServerAddress,
363 $imapPort, 0);
38c944cc 364
365$mbx_response = sqimap_mailbox_select($imapConnection, $mailbox, false, false, true);
366
367if (!isset($messages)) {
368 $messages = array();
369 session_register('messages');
38c944cc 370}
371
372/**
373 * $message contains all information about the message
374 * including header and body
375 */
37d2a6ee 376
377$uidvalidity = $mbx_response['UIDVALIDITY'];
378
379if (!isset($messages[$uidvalidity])) {
380 $messages[$uidvalidity] = array();
381}
5200c026 382if (!isset($messages[$uidvalidity][$passed_id]) || !$uid_support) {
383 $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
384 $messages[$uidvalidity][$passed_id] = $message;
38c944cc 385} else {
6a108031 386// $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
5200c026 387 $message = $messages[$uidvalidity][$passed_id];
388}
389if (isset($passed_ent_id)) {
390 $message = $message->getEntity($passed_ent_id);
391 $message->id = $passed_id;
392 $message->mailbox = $mailbox;
38c944cc 393}
5200c026 394$header = $message->header;
57257333 395
5200c026 396//do_hook('html_top');
57257333 397
398/*
399 * The following code sets necesarry stuff for the MDN thing
400 */
1fca12b5 401if($default_use_mdn &&
402 ($mdn_user_support = getPref($data_dir, $username, 'mdn_user_support',
403 $default_use_mdn))) {
38c944cc 404 $supportMDN = ServerMDNSupport($mbx_response["PERMANENTFLAGS"]);
405 $FirstTimeSee = !$message->is_seen;
57257333 406}
407
5200c026 408//displayPageHeader($color, $mailbox);
409
410/* =============================================================================
411 * block for handling incoming url vars
412 *
413 * =============================================================================
414 */
415
a07cd1a4 416
57257333 417/*
418 * The following code shows the header of the message and then exit
419 */
a07cd1a4 420if (isset($view_hdr)) {
38c944cc 421 $template_vars = array();
5200c026 422 parse_viewheader($imapConnection,$passed_id, $passed_ent_id, &$template_vars);
38c944cc 423 $template_vars['return_address'] = set_url_var($PHP_SELF, 'view_hdr');
424 view_header($template_vars, '', '</body></html>');
425 exit;
a07cd1a4 426}
427
5200c026 428if (isset($sendreceipt)) {
429 if ( !$message->is_mdnsent ) {
430 if (isset($identity) ) {
431 $final_recipient = getPref($data_dir, $username, 'email_address' . '0', '' );
432 } else {
433 $final_recipient = getPref($data_dir, $username, 'email_address', '' );
434 }
435
436 $final_recipient = trim($final_recipient);
437 if ($final_recipient == '' ) {
438 $final_recipient = getPref($data_dir, $username, 'email_address', '' );
439 }
440
441 if ( SendMDN( $final_recipient, $message ) > 0 && $supportMDN ) {
442 ToggleMDNflag( true);
443 $message->is_mdnsent = true;
6a108031 444 $messages[$uidvalidity][$passed_id]=$message;
5200c026 445 }
446 ClearAttachments();
447 }
448}
449
450/* =============================================================================
451 * end block for handling incoming url vars
452 *
453 * =============================================================================
454 */
455
456
a07cd1a4 457if (isset($msgs)) {
458 $currentArrayIndex = $passed_id;
459} else {
460 $currentArrayIndex = -1;
461}
38c944cc 462$msgs[$passed_id]['FLAG_SEEN'] = true;
a07cd1a4 463
a07cd1a4 464/** translate the subject and mailbox into url-able text **/
38c944cc 465$url_subj = urlencode(trim($header->subject));
a07cd1a4 466$urlMailbox = urlencode($mailbox);
467$url_replyto = '';
38c944cc 468if (isset($header->replyto)) {
6a108031 469 $addr_s = $header->replyto->getAddress();
470// $addr_s = $addr_o->getAddress();
38c944cc 471 $url_replyto = urlencode($addr_s);
a07cd1a4 472}
473
1fca12b5 474$url_replytoall = $url_replyto;
a07cd1a4 475
6a108031 476
1fca12b5 477/**
478 * If we are replying to all, then find all other addresses and
479 * add them to the list. Remove duplicates.
1fca12b5 480 */
a07cd1a4 481
38c944cc 482$excl_arr = array();
a07cd1a4 483
1fca12b5 484/**
38c944cc 485 * 1) Remove the addresses we'll be sending the message 'to'
1fca12b5 486 */
a07cd1a4 487$url_replytoall_avoid_addrs = '';
38c944cc 488if (isset($header->replyto)) {
489 $excl_ar = $header->getAddr_a('replyto');
a07cd1a4 490}
491
a07cd1a4 492
1fca12b5 493/**
38c944cc 494 * 2) Remove our identities from the CC list (they still can be in the
1fca12b5 495 * TO list) only if $include_self_reply_all is turned off
496 */
a07cd1a4 497if (!$include_self_reply_all) {
38c944cc 498 $email_address = trim(getPref($data_dir, $username, 'email_address'));
499 $excl_ar[$email_address] = '';
500
a07cd1a4 501 $idents = getPref($data_dir, $username, 'identities');
502 if ($idents != '' && $idents > 1) {
503 for ($i = 1; $i < $idents; $i ++) {
1fca12b5 504 $cur_email_address = getPref($data_dir, $username,
505 'email_address' . $i);
38c944cc 506 $cur_email_address = strtolower($cur_email_address);
507 $excl_ar[$cur_email_address] = '';
10f0ce72 508 }
692155b7 509 }
a07cd1a4 510}
1108e8bb 511
38c944cc 512/**
513 * 3) get the addresses.
1fca12b5 514 */
38c944cc 515$url_replytoall_ar = $header->getAddr_a(array('from','to','cc'), $excl_ar);
516
517/**
518 * 4) generate the string.
519 */
520$url_replytoallcc = '';
521foreach( $url_replytoall_ar as $email => $personal) {
522 if ($personal) {
523 $url_replytoallcc .= ", \"$personal\" <$email>";
524 } else {
525 $url_replytoallcc .= ', '. $email;
526 }
527}
528$url_replytoallcc = substr($url_replytoallcc,2);
692155b7 529
1fca12b5 530/**
38c944cc 531 * 5) urlencode() it
1fca12b5 532 */
a07cd1a4 533$url_replytoallcc = urlencode($url_replytoallcc);
be69e508 534
38c944cc 535$dateString = getLongDateString($header->date);
38c944cc 536/**
537 * What do we reply to -- text only, if possible
538 */
539
5200c026 540$messagebody = '';
38c944cc 541
542/* first step in displaying multiple entities */
543
6a108031 544$ent_ar = $message->findDisplayEntity(array());
545$i = 0;
546for ($i = 0; $i < count($ent_ar); $i++) {
547 $messagebody .= formatBody($imapConnection, $message, $color, $wrap_at, $ent_ar[$i], $passed_id, $mailbox);
38c944cc 548}
6a108031 549
550$ent_num = '';
a07cd1a4 551/** TEXT STRINGS DEFINITIONS **/
552$echo_more = _("more");
553$echo_less = _("less");
554
57257333 555if (!isset($show_more_cc)) {
556 $show_more_cc = FALSE;
557}
10f0ce72 558
4d0cd98b 559if (!isset($show_more_bcc)) {
560 $show_more_bcc = FALSE;
a07cd1a4 561}
4d0cd98b 562
5200c026 563$use_css = false;
564
4d0cd98b 565/** FORMAT THE TO STRING **/
566$to = formatRecipientString($message->header->to, "to");
567$to_string = $to['str'];
568$url_to_string = $to['url_str'];
dfd93ee7 569
a07cd1a4 570
571/** FORMAT THE CC STRING **/
10f0ce72 572
38c944cc 573$cc = formatRecipientString($header->cc, "cc");
4d0cd98b 574$cc_string = $cc['str'];
575$url_cc_string = $cc['url_str'];
a07cd1a4 576
577/** FORMAT THE BCC STRING **/
10f0ce72 578
38c944cc 579$bcc = formatRecipientString($header->bcc, "bcc");
4d0cd98b 580$bcc_string = $bcc['str'];
581$url_bcc_string = $bcc['url_str'];
10f0ce72 582
a07cd1a4 583if ($default_use_priority) {
6a108031 584 $priority_string = getPriorityStr($header->priority);
a07cd1a4 585}
586
587/** make sure everything will display in HTML format **/
38c944cc 588
589$from_o = $header->from;
590if (is_object($from_o)) {
591 $from_name = $from_o->getAddress();
592} else {
593 $from_name = _("Unknown sender");
594}
6a108031 595
38c944cc 596$from_name = decodeHeader(htmlspecialchars($from_name));
6a108031 597$subject = decodeHeader(htmlspecialchars($header->subject));
fa77d354 598$identity = '';
599$idents = getPref($data_dir, $username, 'identities');
600if (!empty($idents) && $idents > 1) {
601 for ($i = 1; $i < $idents; $i++) {
1fca12b5 602 $enc_from_name = '"'.
603 encodeHeader(getPref($data_dir,
604 $username,
605 'full_name' . $i)) .
606 '" <' . getPref($data_dir, $username,
607 'email_address' . $i) . '>';
608 if (htmlspecialchars($enc_from_name) == $from_name) {
fa77d354 609 $identity = $i;
610 break;
611 }
612 }
613}
5200c026 614/* start of prepare html fase */
a07cd1a4 615
5200c026 616$page = initPage();
6a108031 617$head = initHead('SquirrelMail');
5200c026 618$body = initBody($color);
619$top = getTop($color,$mailbox);
620$menu = getMenu($color,$mailbox);
91d95c42 621
5200c026 622GLOBAL $languages, $squirrelmail_language;
a07cd1a4 623
5200c026 624if ( isset( $languages[$squirrelmail_language]['DIR']) ) {
625 $dir = $languages[$squirrelmail_language]['DIR'];
626} else {
627 $dir = 'ltr';
628}
629
630if ( $dir == 'ltr' ) {
631 $rgt = 'right';
632 $lft = 'left';
633} else {
634 $rgt = 'left';
635 $lft = 'right';
636}
637
638
5200c026 639//do_hook('read_body_top');
640/* topbar */
641if ($use_css) {
642 $table_ar = array('cellpadding' => 3);
643} else {
6a108031 644 $table_ar = array( 'width' => '100%', 'cellpadding' => 3 ,
645 'cellspacing'=> 0,'align'=> 'center', 'border' => 0,
646 'bgcolor' => $color[9]);
5200c026 647}
648
649$topbar = new html('table','','','rb_tb','',$table_ar);
650$topbar_row = new html('tr','','','rb_tbr');
651$topbar_delimiter = new html ('','&nbsp;|&nbsp;');
652
653$msgs_url = $base_uri . 'src/';
654if (isset($where) && isset($what)) {
c52c873e 655 if ($pos == '') {
656 $pos=0;
10f0ce72 657 }
5200c026 658 $msgs_url .= 'search.php?where='.urlencode($where).'&amp;pos='.$pos.
659 '&amp;what='.urlencode($what).'&amp;mailbox='.$urlMailbox;
a07cd1a4 660} else {
5200c026 661 $msgs_url .= 'right_main.php?sort='.$sort.'&amp;startMessage='.
662 $startMessage.'&amp;mailbox='.$urlMailbox;
a07cd1a4 663}
5200c026 664
665$topbar_col = new html('td','',array('small'=> true),'rb_tbc','',array('align' => $lft,
666 'width' => '33%'));
667
668$topbar_col->addChild('a', _("Message List"),'','','',
669 array('href' => $msgs_url));
6a108031 670
671/* template string definitions */
672
5200c026 673$delete_url = $base_uri . 'src/delete_message.php?mailbox='.$urlMailbox.
674 '&amp;message='.$passed_id.'&amp;';
a07cd1a4 675if ($where && $what) {
5200c026 676 $delete_url .= 'where=' . urlencode($where) . '&amp;what=' . urlencode($what);
a07cd1a4 677} else {
5200c026 678 $delete_url .= 'sort='. $sort . '&amp;startMessage='. $startMessage;
a07cd1a4 679}
5200c026 680
681$topbar_col->htmlAdd($topbar_delimiter);
682$topbar_col->addChild('a', _("Delete") ,'','','',
683 array('href' => $delete_url));
684
6a108031 685$comp_uri = $base_uri . 'src/compose.php'.
686 '?passed_id='.$passed_id.
687 '&amp;mailbox='.$urlMailbox.
688 (isset($passed_ent_id)?'&amp;passed_ent_id='.$passed_ent_id:'').
689 '&amp;identity='.$identity;
690
a07cd1a4 691if (($mailbox == $draft_folder) && ($save_as_draft)) {
6a108031 692 $comp_alt_uri = $comp_uri . '&amp;action=draft';
5200c026 693 $comp_alt_string = _("Resume Draft");
a07cd1a4 694}
5200c026 695else if ($mailbox == $sent_folder) {
6a108031 696 $comp_alt_uri = $comp_uri . '&amp;action=edit_as_new';
5200c026 697 $comp_alt_string = _("Edit Message as New");
698}
699if (isset($comp_alt_uri)) {
700 $topbar_col->htmlAdd($topbar_delimiter);
fa77d354 701 if ($compose_new_win == '1') {
5200c026 702 $topbar_col->addChild('a', $comp_alt_string ,'','','',
703 array('href' => 'javascript:void(0)'),
6a108031 704 array('onclick'=> 'comp_in_new("'.$comp_alt_uri.'")'));
d7f8e6e6 705 } else {
5200c026 706 $topbar_col->addChild('a', $comp_alt_string ,'','','',
707 array('href' => $comp_alt_uri));
fa77d354 708 }
fa77d354 709}
5200c026 710$topbar_row->htmlAdd($topbar_col);
a07cd1a4 711
5200c026 712if (!(isset($where) && isset($what))) {
713 $topbar_col = new html('td','',array('small'=> true),'rb_tbc','',array('align' => 'center',
714 'width' => '33%'));
a07cd1a4 715
a07cd1a4 716 if ($currentArrayIndex == -1) {
5200c026 717 $topbar_col->addChild('',_("Previous"));
718 $topbar_col->htmlAdd($topbar_delimiter);
719 $topbar_col->addChild('',_("Next"));
10f0ce72 720 } else {
38c944cc 721 $prev = findPreviousMessage($mbx_response['EXISTS']);
a07cd1a4 722 $next = findNextMessage();
10f0ce72 723
a07cd1a4 724 if ($prev != -1) {
5200c026 725 $uri = $base_uri . 'src/read_body.php?passed_id='.$prev.
726 '&amp;mailbox='.$urlMailbox.'&amp;sort='.$sort.
727 '&amp;startMessage='.$startMessage.'&amp;show_more=0';
728 $topbar_col->addChild('a',_("Previous") , '','','',
729 array('href' => $uri));
10f0ce72 730 } else {
5200c026 731 $topbar_col->addChild('',_("Previous"));
10f0ce72 732 }
5200c026 733 $topbar_col->htmlAdd($topbar_delimiter);
a07cd1a4 734 if ($next != -1) {
5200c026 735 $uri = $base_uri . 'src/read_body.php?passed_id='.$next.
736 '&amp;mailbox='.$urlMailbox.'&amp;sort='.$sort.
737 '&amp;startMessage='.$startMessage.'&amp;show_more=0';
738 $topbar_col->addChild('a',_("Next") ,'','','',
739 array('href' => $uri));
a07cd1a4 740 } else {
5200c026 741 $topbar_col->addChild('',_("Next"));
a07cd1a4 742 }
10f0ce72 743 }
5200c026 744 $topbar_row->htmlAdd($topbar_col);
a07cd1a4 745}
746
5200c026 747$topbar_col = new html('td','',array('small'=>true),'rb_tbc','',array('align' => $rgt,
748 'width' => '33%'));
749
6a108031 750$comp_action_uri = $comp_uri . '&amp;action=forward';
91d95c42 751
d7f8e6e6 752if ($compose_new_win == '1') {
5200c026 753 $topbar_col->addChild('a',_("Forward") ,'','','',
754 array('href' => 'javascript:void(0)'),
6a108031 755 array('onclick'=> 'comp_in_new(\''.$comp_action_uri.'\')'));
d7f8e6e6 756} else {
5200c026 757 $topbar_col->addChild('a', _("Forward") ,'','','',
6a108031 758 array('href' => $comp_action_uri));
d7f8e6e6 759}
760
5200c026 761$topbar_col->htmlAdd($topbar_delimiter);
6a108031 762$comp_action_uri = decodeHeader($comp_uri . '&amp;action=reply');
91d95c42 763
d7f8e6e6 764if ($compose_new_win == '1') {
5200c026 765 $topbar_col->addChild('a',_("Reply") ,'','','',
766 array('href' => 'javascript:void(0)'),
6a108031 767 array('onclick' => 'comp_in_new(\''.$comp_action_uri.'\')'));
d7f8e6e6 768} else {
5200c026 769 $topbar_col->addChild('a', _("Reply") ,'','','',
6a108031 770 array('href' => $comp_action_uri));
d7f8e6e6 771}
6a108031 772$comp_action_uri = $comp_uri . '&amp;action=reply_all';
d7f8e6e6 773
5200c026 774$topbar_col->htmlAdd($topbar_delimiter);
d7f8e6e6 775if ($compose_new_win == '1') {
5200c026 776 $topbar_col->addChild('a',_("Reply All") ,'','','',
777 array('href' => 'javascript:void(0)'),
6a108031 778 array('onclick'=> 'comp_in_new(\''.$comp_action_uri.'\')'));
d7f8e6e6 779} else {
5200c026 780 $topbar_col->addChild('a', _("Reply All") ,'','','',
6a108031 781 array('href' => $comp_action_uri));
d7f8e6e6 782}
5200c026 783$topbar_row->htmlAdd($topbar_col);
784$topbar->htmlAdd($topbar_row);
785
786
787//$topbar->echoHtml();
788//echo '<table><tr><td></td></tr></table>';
789
790/* read_body envelope */
791
792/* init some formatting arrays */
793$use_css = false;
794if (!$use_css) {
795 $ar_key = array( 'width' => '20%',
796 'valign' => 'top',
797 'bgcolor' => $color[0],
798 'align' => 'right');
799
800 $ar_val = array( 'width' => '80%',
801 'valign' => 'top',
802 'bgcolor' => $color[0],
803 'align' => 'left');
804 $ar_table = array( 'width' => '100%',
805 'cellpadding' => '0',
806 'cellspacing' => '0',
6a108031 807 'border' => '0',
5200c026 808 'align' =>'center');
a07cd1a4 809} else {
5200c026 810 $ar_key = '';
811 $ar_val = '';
812 $ar_table = array( 'cellpadding' => '0',
813 'cellspacing' => '0');
a07cd1a4 814}
815
5200c026 816//echo '</table></table>';
817
818$envtable = new html('table','','','rb_env','',$ar_table);
819
820/* subject */
821$row_s = new html('tr','','','rb_r','rb_sc');
822$col = new html('td',_("Subject").':&nbsp;','','rb_hk','rb_sk',$ar_key);
823$row_s->htmlAdd($col);
824$col = new html('td',$subject,array('b'=> true),'rb_hv','rb_sv', $ar_val);
825$row_s->htmlAdd($col);
826$envtable->htmlAdd($row_s);
827
828/* from */
829$row_f = new html('tr','','','rb_r','rb_fc');
830$col = new html('td',_("From").':&nbsp;','','rb_hk','rb_fk', $ar_key);
831$row_f->htmlAdd($col);
832$col = new html('td',$from_name,array('b'=> true),'rb_hv','rb_fv',$ar_val);
833$row_f->htmlAdd($col);
834$envtable->htmlAdd($row_f);
835
836/* date */
837$row_d = new html('tr','','','rb_r','rb_dc');
838$col = new html('td',_("Date").':&nbsp;','','rb_hk','rb_dk', $ar_key);
839$row_d->htmlAdd($col);
840$col = new html('td',$dateString,array('b'=> true),'rb_hv','rb_dv',$ar_val);
841$row_d->htmlAdd($col);
842$envtable->htmlAdd($row_d);
843
844/* to */
845$row_t = new html('tr','','','rb_r','rb_tc');
846$col = new html('td',_("To").':&nbsp;','','rb_hk','rb_tk', $ar_key);
847$row_t->htmlAdd($col);
848$col = new html('td',$to_string,array('b'=> true),'rb_hv','rb_tv',$ar_val);
849$row_t->htmlAdd($col);
850$envtable->htmlAdd($row_t);
851
852/* cc */
9e9ad58b 853if (isset($cc_string) && $cc_string <> '') {
5200c026 854 $row_c = new html('tr','','','rb_r','rb_cc');
855 $col = new html('td',_("Cc").':&nbsp;','','rb_hk','rb_ck', $ar_key);
856 $row_c->htmlAdd($col);
857 $col = new html('td',$cc_string,array('b'=> true),'rb_hv','rb_cv',$ar_val);
858 $row_c->htmlAdd($col);
859 $envtable->htmlAdd($row_c);
a07cd1a4 860}
861
5200c026 862/* bcc */
9e9ad58b 863if (isset($bcc_string) && $bcc_string <> '') {
5200c026 864 $row_b = new html('tr','','','rb_r','rb_bc');
865 $col = new html('td',_("Bcc"). ':&nbsp;','','rb_hk','rb_bk', $ar_key);
866 $row_b->htmlAdd($col);
867 $col = new html('td',$bcc_string,array('b'=> true),'rb_hv','rb_bv',$ar_val);
868 $row_b->htmlAdd($col);
869 $envtable->htmlAdd($row_b);
a07cd1a4 870}
5200c026 871/* priority */
9e9ad58b 872if ($default_use_priority && isset($priority_string) && $priority_string <> '' ) {
5200c026 873 $row_p = new html('tr','','','rb_r','rb_pc');
874 $col = new html('td',_("Priority") . ':&nbsp;','','rb_hk','rb_pk', $ar_key);
875 $row_p->htmlAdd($col);
876 $col = new html('td',$priority_string ,array('b'=> true),'rb_hv','rb_pv',$ar_val);
877 $row_p->htmlAdd($col);
878 $envtable->htmlAdd($row_p);
a07cd1a4 879}
880
5200c026 881/* xmailer */
a07cd1a4 882if ($show_xmailer_default) {
38c944cc 883 $mailer = $header->xmailer;
a07cd1a4 884 if (trim($mailer)) {
5200c026 885 $row_xm = new html('tr','','','rb_r','rb_xmc');
886 $col = new html('td',_("Mailer") . ':&nbsp;','','rb_hk','rb_xmk', $ar_key);
887 $row_xm->htmlAdd($col);
888 $col = new html('td',$mailer ,array('b'=> true),'rb_hv','rb_xmv',$ar_val);
889 $row_xm->htmlAdd($col);
890 $envtable->htmlAdd($row_xm);
10f0ce72 891 }
a07cd1a4 892}
893
57257333 894if ($default_use_mdn) {
895 if ($mdn_user_support) {
5200c026 896 if ($header->dnt) {
897 $row_mdn = new html('tr','','','rb_r','rb_mdnc');
898 $col = new html('td',_("Read receipt") . ':','','rb_hk','rb_mdnk', $ar_key);
899 $row_mdn->htmlAdd($col);
900 if ($message->is_mdnsent) {
901 $mdn_string = _("send");
902 } else {
6a108031 903 if ($message->is_mdnsent) echo "BOE";
5200c026 904 $mdn_string = _("requested");
6a108031 905 global $draft_folder, $send_folder;
906 if ( !($mailbox == $draft_folder ||
907 $mailbox == $sent_folder || $message->is_deleted)) {
5200c026 908 $mdn_url = 'read_body.php?mailbox='.$mailbox.'&passed_id='.
909 $passed_id.'&startMessage='.$startMessage.
910 '&show_more='.$show_more.'&sendreceipt=1';
6a108031 911 $FirstTimeSee = true;
5200c026 912 if ($FirstTimeSee && $javascript_on) {
6a108031 913 $script = 'if(window.confirm("' .
914 'var mailbox,passed_id,startMessage;'.
5200c026 915 _("The message sender has requested a response to indicate that you have read this message. Would you like to send a receipt?") .
916 '")) { '."\n" .
6a108031 917 ' sendMDN()'.
5200c026 918 '}' . "\n";
919 $body->scriptAdd($script);
920 }
921 $mdn_link = new html('a','[' . _("Send read receipt now") . ']','','','',
922 array('href' => $mdn_url));
923 }
924 }
925 $col = new html('td',$mdn_string ,
926 array('b'=> true),'rb_hv','rb_mdnv',$ar_val);
927 if (isset($mdn_link)) {
928 $col->htmlAdd($mdn_link);
929 }
930 $row_mdn->htmlAdd($col);
931 $envtable->htmlAdd($row_mdn);
932 }
933 }
934}
935
936//$envtable->echoHtml($use_css);
937
938$rb_tools_table = new html('table','','','rb_tools','',$ar_table);
6a108031 939$row = new html('tr','','','rb_rt','',array('valign'=> 'top','align'=> 'right'));
5200c026 940/* view header */
941$viewheader_url = $base_uri . 'src/read_body.php?mailbox=' . $urlMailbox .
942 '&amp;passed_id='. $passed_id. '&amp;';
943if ($where && $what) {
944 $viewheader_url .= 'where=' . urlencode($where) . '&amp;what=' . urlencode($what) .
945 '&amp;view_hdr=1';
946} else {
947 $viewheader_url .= 'startMessage=' .$startMessage. '&amp;show_more='.
948 $show_more .'&amp;view_hdr=1';
949}
57257333 950
5200c026 951$link = new html('a',_("View Full Header") .' | ','','','',array (
952 'href' => $viewheader_url));
6a108031 953$col = new html('td','',array('small'=>true),'rb_ht','rb_vht');
5200c026 954$col->htmlAdd($link);
77b88425 955
5200c026 956/* Output the printer friendly link if we are in subtle mode. */
957if ($pf_subtle_link) {
958 $link = new html('span',printer_friendly_link(true),'','rb_ht','rb_pft');
959 $col->htmlAdd($link);
960}
961$row->htmlAdd($col);
57257333 962
5200c026 963//do_hook("read_body_header_right");
57257333 964
5200c026 965$rb_tools_table->htmlAdd($row);
57257333 966
5200c026 967//$rb_tools_table->echoHtml($use_css);
38c944cc 968
5200c026 969//do_hook('read_body_header');
57257333 970
5200c026 971if ($use_css) {
972 $ar_row = array('align'=>$lft);
973} else {
974 $ar_row = array('align'=>$lft, 'bgcolor'=> $color[4]);
975}
57257333 976
5200c026 977
978$rb_message_table = new html('table','','','rb_body','',$ar_table);
979$row_body = new html('tr','','','rb_bd','rb_bdr');
6a108031 980$col_body = new html('tb',$messagebody,array('br'=>false),'rb_bd','rb_bdr',$ar_row);
981
5200c026 982$row_body->htmlAdd($col_body);
d5158890 983$rb_message_table->htmlAdd($row_body);
5200c026 984
6a108031 985$row_body = new html('tr','','','rb_bda','rb_bdr');
d5158890 986$attachements = formatAttachments($message,$ent_ar,$mailbox, $passed_id);
6a108031 987$col_body = new html('tb',$attachements,array('br'=>false),'rb_bd','',$ar_row);
5200c026 988$row_body->htmlAdd($col_body);
6a108031 989
990//$col_body = new html('tb',$attachements,array('br'=>false),'rb_bd','',$ar_row);
991//$row_body->htmlAdd($col_body);
992
5200c026 993$rb_message_table->htmlAdd($row_body);
994
995if ($use_css) {
996 $ar_row = array('align'=>$lft);
997} else {
998 $ar_row = array('align'=>$lft, 'bgcolor'=> $color[4], 'cellpadding' =>3);
57257333 999}
1000
5200c026 1001$body->htmlAdd($top);
1002$body->htmlAdd($menu);
1003$body->htmlAdd($topbar);
1004$body->htmlAdd($envtable);
1005$body->htmlAdd($rb_tools_table);
1006$body->htmlAdd($rb_message_table);
1007
1a6ec9e6 1008$page->html_el[1]->htmlAdd($head);
1009$page->html_el[1]->htmlAdd($body);
5200c026 1010
1011$page->echoHtml();
1012
57257333 1013
b5058e9e 1014
a07cd1a4 1015
1016/* show attached images inline -- if pref'fed so */
5be9f195 1017if (($attachment_common_show_images) &&
a07cd1a4 1018 is_array($attachment_common_show_images_list)) {
5be9f195 1019
a07cd1a4 1020 foreach ($attachment_common_show_images_list as $img) {
5be9f195 1021 $imgurl = '../src/download.php' .
57257333 1022 '?' .
cd7b8833 1023 'passed_id=' . urlencode($img['passed_id']) .
3d570ba0 1024 '&amp;mailbox=' . urlencode($mailbox) .
1025 '&amp;passed_ent_id=' . urlencode($img['ent_id']) .
1026 '&amp;absolute_dl=true';
5be9f195 1027
b5058e9e 1028 echo html_tag( 'table', "\n" .
1029 html_tag( 'tr', "\n" .
1030 html_tag( 'td', '<img src="' . $imgurl . '">' ."\n", 'left'
1031 )
1032 ) ,
1033 'center', '', 'cellspacing=0 border="0" cellpadding="2"');
10f0ce72 1034 }
a07cd1a4 1035}
1036
5200c026 1037//do_hook('read_body_bottom');
1038//do_hook('html_bottom');
a07cd1a4 1039sqimap_logout($imapConnection);
1040?>