second try
[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
86725763 15/* Path for SquirrelMail required files. */
16define('SM_PATH','../');
17
18/* SquirrelMail required files. */
08185f2a 19require_once(SM_PATH . 'include/validate.php');
86725763 20require_once(SM_PATH . 'functions/imap.php');
21require_once(SM_PATH . 'functions/mime.php');
22require_once(SM_PATH . 'functions/date.php');
23require_once(SM_PATH . 'functions/url_parser.php');
24require_once(SM_PATH . 'functions/html.php');
38c944cc 25
d9c1dccc 26
a07cd1a4 27/**
1fca12b5 28 * Given an IMAP message id number, this will look it up in the cached
29 * and sorted msgs array and return the index. Used for finding the next
30 * and previous messages.
31 *
32 * @return the index of the next valid message from the array
33 */
c615b1da 34function findNextMessage($passed_id) {
35 global $msort, $msgs, $sort,
cf710efe 36 $thread_sort_messages, $allow_server_sort,
60a3e687 37 $server_sort_array;
2728fa19 38 if (!is_array($server_sort_array)) {
39 $thread_sort_messages = 0;
794d59c0 40 $allow_server_sort = FALSE;
2728fa19 41 }
a07cd1a4 42 $result = -1;
c615b1da 43 if ($thread_sort_messages || $allow_server_sort) {
d9c1dccc 44 $count = count($server_sort_array) - 1;
45 foreach($server_sort_array as $key=>$value) {
c615b1da 46 if ($passed_id == $value) {
d9c1dccc 47 if ($key == $count) {
60a3e687 48 break;
49 }
1fca12b5 50 $result = $server_sort_array[$key + 1];
60a3e687 51 break;
789b4d79 52 }
60a3e687 53 }
d9c1dccc 54 } else {
7e818af0 55 if (is_array($msort)) {
56 for (reset($msort); ($key = key($msort)), (isset($key)); next($msort)) {
57 if ($passed_id == $msgs[$key]['ID']) {
58 next($msort);
59 $key = key($msort);
60 if (isset($key)){
61 $result = $msgs[$key]['ID'];
62 break;
d9c1dccc 63 }
1fca12b5 64 }
10f0ce72 65 }
66 }
10f0ce72 67 }
d9c1dccc 68 return $result;
a07cd1a4 69}
70
a07cd1a4 71/** returns the index of the previous message from the array. */
c615b1da 72function findPreviousMessage($numMessages, $passed_id) {
73 global $msort, $sort, $msgs,
74 $thread_sort_messages,
60a3e687 75 $allow_server_sort, $server_sort_array;
a07cd1a4 76 $result = -1;
2728fa19 77 if (!is_array($server_sort_array)) {
78 $thread_sort_messages = 0;
794d59c0 79 $allow_server_sort = FALSE;
2728fa19 80 }
c615b1da 81 if ($thread_sort_messages || $allow_server_sort ) {
d9c1dccc 82 foreach($server_sort_array as $key=>$value) {
c615b1da 83 if ($passed_id == $value) {
60a3e687 84 if ($key == 0) {
60a3e687 85 break;
86 }
d9c1dccc 87 $result = $server_sort_array[$key - 1];
60a3e687 88 break;
789b4d79 89 }
60a3e687 90 }
d9c1dccc 91 } else {
7e818af0 92 if (is_array($msort)) {
93 for (reset($msort); ($key = key($msort)), (isset($key)); next($msort)) {
94 if ($passed_id == $msgs[$key]['ID']) {
95 prev($msort);
96 $key = key($msort);
97 if (isset($key)) {
98 $result = $msgs[$key]['ID'];
99 break;
d9c1dccc 100 }
10f0ce72 101 }
102 }
10f0ce72 103 }
a07cd1a4 104 }
d9c1dccc 105 return $result;
a07cd1a4 106}
10f0ce72 107
a07cd1a4 108/**
1fca12b5 109 * Displays a link to a page where the message is displayed more
110 * "printer friendly".
111 */
c615b1da 112function printer_friendly_link($mailbox, $passed_id, $passed_ent_id, $color) {
113 global $javascript_on;
a07cd1a4 114
c615b1da 115 $params = '?passed_ent_id=' . $passed_ent_id .
d9c1dccc 116 '&mailbox=' . urlencode($mailbox) .
117 '&passed_id=' . $passed_id;
10f0ce72 118
a07cd1a4 119 $print_text = _("View Printable Version");
10f0ce72 120
c615b1da 121 $result = '';
a07cd1a4 122 /* Output the link. */
123 if ($javascript_on) {
3d570ba0 124 $result .= '<script language="javascript" type="text/javascript">' . "\n" .
d9c1dccc 125 '<!--' . "\n" .
126 " function printFormat() {\n" .
127 ' window.open("../src/printer_friendly_main.php' .
128 $params . '","Print","width=800,height=600");' . "\n".
129 " }\n" .
130 "// -->\n" .
131 "</script>\n" .
132 "<a href=\"javascript:printFormat();\">$print_text</a>\n";
a07cd1a4 133 } else {
b5058e9e 134 $result .= '<A target="_blank" HREF="../src/printer_friendly_bottom.php' .
d9c1dccc 135 "$params\">$print_text</a>\n";
a07cd1a4 136 }
d9c1dccc 137 return $result;
a07cd1a4 138}
139
d9c1dccc 140function ServerMDNSupport($read) {
f69feefe 141 /* escaping $ doesn't work -> \x36 */
d9c1dccc 142 $ret = preg_match('/(\x36MDNSent|\\\*)/i', $read);
143 return $ret;
57257333 144}
145
fc224f68 146function SendMDN ( $mailbox, $passed_id, $sender, $message, $imapConnection) {
0b97a708 147 global $username, $attachment_dir, $_SERVER,
fc224f68 148 $version, $attachments, $squirrelmail_language, $default_charset,
d9c1dccc 149 $languages, $useSendmail, $domain, $sent_folder,
150 $popuser, $data_dir, $username;
57257333 151
0b97a708 152 $SERVER_NAME = $_SERVER['SERVER_NAME'];
153
38bca81c 154 $header = $message->rfc822_header;
57257333 155 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
156
fc224f68 157 $rfc822_header = new Rfc822Header();
d9c1dccc 158 $content_type = new ContentType('multipart/report');
fc224f68 159 $content_type->properties['report-type']='disposition-notification';
d9c1dccc 160
fc224f68 161 set_my_charset();
162 if ($default_charset) {
d9c1dccc 163 $content_type->properties['charset']=$default_charset;
fc224f68 164 }
165 $rfc822_header->content_type = $content_type;
166 $rfc822_header->to[] = $header->dnt;
167 $rfc822_header->subject = _("Read:") . ' ' . $header->subject;
168
169
170 $reply_to = '';
171 if (isset($identity) && $identity != 'default') {
172 $from_mail = getPref($data_dir, $username,
d9c1dccc 173 'email_address' . $identity);
fc224f68 174 $full_name = getPref($data_dir, $username,
d9c1dccc 175 'full_name' . $identity);
fc224f68 176 $from_addr = '"'.$full_name.'" <'.$from_mail.'>';
d9c1dccc 177 $reply_to = getPref($data_dir, $username,
178 'reply_to' . $identity);
fc224f68 179 } else {
180 $from_mail = getPref($data_dir, $username, 'email_address');
181 $full_name = getPref($data_dir, $username, 'full_name');
182 $from_addr = '"'.$full_name.'" <'.$from_mail.'>';
d9c1dccc 183 $reply_to = getPref($data_dir, $username,'reply_to');
fc224f68 184 }
185 if (!$from_addr) {
186 $from_addr = "$popuser@$domain";
187 $from_mail = $from_addr;
188 }
189 $rfc822_header->from = $rfc822_header->parseAddress($from_addr,true);
190 if ($reply_to) {
191 $rfc822_header->reply_to = $rfc822_header->parseAddress($reply_to,true);
192 }
d9c1dccc 193
57257333 194 // part 1 (RFC2298)
57257333 195 $senton = getLongDateString( $header->date );
196 $to_array = $header->to;
197 $to = '';
198 foreach ($to_array as $line) {
af568a82 199 $to .= ' '.$line->getAddress();
57257333 200 }
57257333 201 $now = getLongDateString( time() );
78db1583 202 set_my_charset();
46bb8da8 203 $body = _("Your message") . "\r\n\r\n" .
204 "\t" . _("To:") . ' ' . $to . "\r\n" .
fc224f68 205 "\t" . _("Subject:") . ' ' . $header->subject . "\r\n" .
46bb8da8 206 "\t" . _("Sent:") . ' ' . $senton . "\r\n" .
207 "\r\n" .
208 sprintf( _("Was displayed on %s"), $now );
f69feefe 209
fc224f68 210 $special_encoding = '';
211 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
212 function_exists($languages[$squirrelmail_language]['XTRA_CODE'])) {
6fbd125b 213 $body = $languages[$squirrelmail_language]['XTRA_CODE']('encode', $body);
d9c1dccc 214 if (strtolower($default_charset) == 'iso-2022-jp') {
215 if (mb_detect_encoding($body) == 'ASCII') {
216 $special_encoding = '8bit';
217 } else {
218 $body = mb_convert_encoding($body, 'JIS');
219 $special_encoding = '7bit';
220 }
221 }
6fbd125b 222 }
fc224f68 223 $part1 = new Message();
224 $part1->setBody($body);
225 $mime_header = new MessageHeader;
226 $mime_header->type0 = 'text';
227 $mime_header->type1 = 'plain';
228 if ($special_encoding) {
229 $mime_header->encoding = $special_encoding;
d9c1dccc 230 } else {
fc224f68 231 $mime_header->encoding = 'us-ascii';
232 }
233 if ($default_charset) {
234 $mime_header->parameters['charset'] = $default_charset;
235 }
236 $part1->mime_header = $mime_header;
237
57257333 238 // part2 (RFC2298)
d9c1dccc 239 $original_recipient = $to;
57257333 240 $original_message_id = $header->message_id;
241
fc224f68 242 $report = "Reporting-UA : $SERVER_NAME ; SquirrelMail (version $version) \r\n";
57257333 243 if ($original_recipient != '') {
fc224f68 244 $report .= "Original-Recipient : $original_recipient\r\n";
57257333 245 }
246 $final_recipient = $sender;
fc224f68 247 $report .= "Final-Recipient: rfc822; $final_recipient\r\n" .
57257333 248 "Original-Message-ID : $original_message_id\r\n" .
249 "Disposition: manual-action/MDN-sent-manually; displayed\r\n";
250
fc224f68 251 $part2 = new Message();
252 $part2->setBody($report);
253 $mime_header = new MessageHeader;
254 $mime_header->type0 = 'message';
255 $mime_header->type1 = 'disposition-notification';
256 $mime_header->encoding = 'us-ascii';
257 $part2->mime_header = $mime_header;
258
259 $composeMessage = new Message();
260 $composeMessage->rfc822_header = $rfc822_header;
261 $composeMessage->addEntity($part1);
262 $composeMessage->addEntity($part2);
263
264
d9c1dccc 265 if ($useSendmail) {
266 require_once(SM_PATH . 'class/deliver/Deliver_SendMail.class.php');
267 global $sendmail_path;
268 $deliver = new Deliver_SendMail();
269 $stream = $deliver->initStream($composeMessage,$sendmail_path);
fc224f68 270 } else {
d9c1dccc 271 require_once(SM_PATH . 'class/deliver/Deliver_SMTP.class.php');
272 $deliver = new Deliver_SMTP();
273 global $smtpServerAddress, $smtpPort, $use_authenticated_smtp, $pop_before_smtp;
274 if ($use_authenticated_smtp) {
275 global $key, $onetimepad;
276 $user = $username;
277 $pass = OneTimePadDecrypt($key, $onetimepad);
278 } else {
279 $user = '';
280 $pass = '';
281 }
282 $authPop = (isset($pop_before_smtp) && $pop_before_smtp) ? true : false;
283 $stream = $deliver->initStream($composeMessage,$domain,0,
284 $smtpServerAddress, $smtpPort, $authPop);
285 }
286 $success = false;
fc224f68 287 if ($stream) {
d9c1dccc 288 $length = $deliver->mail($composeMessage, $stream);
289 $success = $deliver->finalizeStream($stream);
fc224f68 290 }
d9c1dccc 291 if (!$success) {
fc224f68 292 $msg = $deliver->dlv_msg . '<br>Server replied: '.$deliver->dlv_ret_nr;
d9c1dccc 293 require_once(SM_PATH . 'functions/display_messages.php');
fc224f68 294 plain_error_message($msg, $color);
295 } else {
296 unset ($deliver);
d9c1dccc 297 if (sqimap_mailbox_exists ($imapConnection, $sent_folder)) {
298 sqimap_append ($imapConnection, $sent_folder, $length);
299 require_once(SM_PATH . 'class/deliver/Deliver_IMAP.class.php');
300 $imap_deliver = new Deliver_IMAP();
301 $imap_deliver->mail($composeMessage, $imapConnection);
302 sqimap_append_done ($imapConnection);
303 unset ($imap_deliver);
304 }
305 }
306 return $success;
57257333 307}
308
309
d9c1dccc 310function ToggleMDNflag ($set ,$imapConnection, $mailbox, $passed_id, $uid_support) {
311 $sg = $set?'+':'-';
312 $cmd = 'STORE ' . $passed_id . ' ' . $sg . 'FLAGS ($MDNSent)';
0892e427 313 $read = sqimap_run_command ($imapConnection, $cmd, true, $response,
507d14ea 314 $readmessage, $uid_support);
57257333 315}
316
317function ClearAttachments() {
d9c1dccc 318 global $username, $attachments, $attachment_dir;
319
320 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
321
322 $rem_attachments = array();
323 foreach ($attachments as $info) {
324 if ($info['session'] == -1) {
325 $attached_file = "$hashed_attachment_dir/$info[localfilename]";
326 if (file_exists($attached_file)) {
327 unlink($attached_file);
328 }
329 } else {
330 $rem_attachments[] = $info;
331 }
332 }
333 $attachments = $rem_attachments;
57257333 334}
335
4d0cd98b 336function formatRecipientString($recipients, $item ) {
d9c1dccc 337 global $show_more_cc, $show_more, $show_more_bcc,
338 $PHP_SELF;
4d0cd98b 339
d9c1dccc 340 $string = '';
38c944cc 341 if ((is_array($recipients)) && (isset($recipients[0]))) {
d9c1dccc 342 $show = false;
38c944cc 343
344 if ($item == 'to') {
d9c1dccc 345 if ($show_more) {
346 $show = true;
347 $url = set_url_var($PHP_SELF, 'show_more',0);
348 } else {
349 $url = set_url_var($PHP_SELF, 'show_more',1);
350 }
351 } else if ($item == 'cc') {
352 if ($show_more_cc) {
353 $show = true;
354 $url = set_url_var($PHP_SELF, 'show_more_cc',0);
355 } else {
356 $url = set_url_var($PHP_SELF, 'show_more_cc',1);
357 }
358 } else if ($item == 'bcc') {
359 if ($show_more_bcc) {
360 $show = true;
361 $url = set_url_var($PHP_SELF, 'show_more_bcc',0);
362 } else {
363 $url = set_url_var($PHP_SELF, 'show_more_bcc',1);
364 }
365 }
366
367 $cnt = count($recipients);
368 foreach($recipients as $r) {
369 $add = htmlspecialchars($r->getAddress());
370 if ($string) {
371 $string .= '<BR>' . $add;
372 } else {
373 $string = $add;
374 if ($cnt > 1) {
38c944cc 375 $string .= '&nbsp;(<A HREF="'.$url;
d9c1dccc 376 if ($show) {
377 $string .= '">'._("less").'</A>)';
378 } else {
379 $string .= '">'._("more").'</A>)';
380 break;
381 }
382 }
383 }
1fca12b5 384 }
4d0cd98b 385 }
c615b1da 386 return $string;
387}
388
af568a82 389function formatEnvheader($mailbox, $passed_id, $passed_ent_id, $message,
390 $color, $FirstTimeSee) {
2ffa3f57 391 global $msn_user_support, $default_use_mdn, $draft_folder, $sent_folder,
392 $default_use_priority, $show_xmailer_default,
393 $mdn_user_support, $PHP_SELF, $javascript_on;
38bca81c 394
d9c1dccc 395 $header = $message->rfc822_header;
396 $env = array();
397 $env[_("Subject")] = htmlspecialchars(decodeHeader($header->subject));
398 $from_name = $header->getAddr_s('from');
399 if (!$from_name) {
400 $from_name = $header->getAddr_s('sender');
401 if (!$from_name) {
402 $from_name = _("Unknown sender");
403 }
404 }
405 $env[_("From")] = htmlspecialchars(decodeHeader($from_name));
406 $env[_("Date")] = getLongDateString($header->date);
407 $env[_("To")] = formatRecipientString($header->to, "to");
408 $env[_("Cc")] = formatRecipientString($header->cc, "cc");
409 $env[_("Bcc")] = formatRecipientString($header->bcc, "bcc");
410 if ($default_use_priority) {
411 $env[_("Priority")] = getPriorityStr($header->priority);
412 }
413 if ($show_xmailer_default) {
414 $env[_("Mailer")] = decodeHeader($header->xmailer);
415 }
416 if ($default_use_mdn) {
417 if ($mdn_user_support) {
418 if ($header->dnt) {
419 if ($message->is_mdnsent) {
420 $env[_("Read receipt")] = _("send");
421 } else {
422 $env[_("Read receipt")] = _("requested");
423 if (!($mailbox == $draft_folder ||
424 $mailbox == $sent_folder ||
425 $message->is_deleted ||
426 $passed_ent_id)) {
427 $mdn_url = $PHP_SELF . '&sendreceipt=1';
428 if ($FirstTimeSee && $javascript_on) {
429 $script = '<script language="JavaScript" type="text/javascript">' . "\n";
430 $script .= '<!--'. "\n";
431 $script .= 'if(window.confirm("' .
432 _("The message sender has requested a response to indicate that you have read this message. Would you like to send a receipt?") .
433 '")) { '."\n" .
434 ' sendMDN()'.
435 '}' . "\n";
436 $script .= '// -->'. "\n";
437 $script .= '</script>'. "\n";
438 echo $script;
439 }
440 $env[_("Read receipt")] .= '&nbsp;<a href="' . $mdn_url . '">[' .
441 _("Send read receipt now") . ']</a>';
442 }
443 }
444 }
445 }
446 }
c615b1da 447
0e02d604 448 $s = '<TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="2" BORDER="0"';
449 $s .= ' ALIGN="center" BGCOLOR="'.$color[0].'">';
d9c1dccc 450 foreach ($env as $key => $val) {
451 if ($val) {
452 $s .= '<TR>';
453 $s .= html_tag('TD', '<B>' . $key . ':&nbsp;&nbsp;</B>', 'RIGHT', '', 'VALIGN="TOP" WIDTH="20%"') . "\n";
454 $s .= html_tag('TD', $val, 'left', '', 'VALIGN="TOP" WIDTH="80%"') . "\n";
455 $s .= '</TR>';
456 }
457 }
63e58a3b 458 //echo '<TABLE BGCOLOR="'.$color[9].'" WIDTH="100%" CELLPADDING="1"'.
459 // ' CELLSPACING="0" BORDER="0" ALIIGN="center">'."\n";
d9c1dccc 460 echo $s;
461 do_hook("read_body_header");
462 formatToolbar($mailbox, $passed_id, $passed_ent_id, $message, $color);
463 echo '</TABLE>';
464}
c615b1da 465
7172cad7 466function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_response) {
d9c1dccc 467 global $base_uri, $sent_folder, $draft_folder, $where, $what, $color, $sort,
468 $startMessage, $compose_new_win, $PHP_SELF, $save_as_draft,
469 $enable_forward_as_attachment;
c615b1da 470
d9c1dccc 471 $topbar_delimiter = '&nbsp;|&nbsp;';
472 $urlMailbox = urlencode($mailbox);
473 $s = '<table width="100%" cellpadding="3" cellspacing="0" align="center"'.
c615b1da 474 ' border="0" bgcolor="'.$color[9].'"><tr><td align="left" width="33%"><small>';
475
d9c1dccc 476 $msgs_url = $base_uri . 'src/';
477 if (isset($where) && isset($what)) {
478 $msgs_url .= 'search.php?where=' . urlencode($where) .
479 '&amp;what=' . urlencode($what) . '&amp;mailbox=' . $urlMailbox;
480 $msgs_str = _("Search results");
481 } else {
482 $msgs_url .= 'right_main.php?sort=' . $sort . '&amp;startMessage=' .
483 $startMessage . '&amp;mailbox=' . $urlMailbox;
484 $msgs_str = _("Message List");
485 }
486 $s .= '<a href="' . $msgs_url . '">' . $msgs_str . '</a>';
487 $s .= $topbar_delimiter;
488
489 $delete_url = $base_uri . 'src/delete_message.php?mailbox=' . $urlMailbox .
490 '&amp;message=' . $passed_id . '&amp;';
491 if (!(isset($passed_ent_id) && $passed_ent_id)) {
492 if ($where && $what) {
493 $delete_url .= 'where=' . urlencode($where) . '&amp;what=' . urlencode($what);
494 } else {
495 $delete_url .= 'sort=' . $sort . '&amp;startMessage=' . $startMessage;
496 }
497 $s .= '<a href="' . $delete_url . '">' . _("Delete") . '</a>';
498 }
c615b1da 499
d9c1dccc 500 $comp_uri = $base_uri . 'src/compose.php' .
501 '?passed_id=' . $passed_id .
502 '&amp;mailbox=' . $urlMailbox .
503 (isset($passed_ent_id)?'&amp;passed_ent_id='.$passed_ent_id:'');
2ffa3f57 504
d9c1dccc 505 if ($compose_new_win == '1') {
506 $link_open = '<a href="javascript:void(0)" onclick="comp_in_new(\'';
507 $link_close = '\')">';
508 } else {
509 $link_open = '<a href="';
510 $link_close = '">';
511 }
512 if (($mailbox == $draft_folder) && ($save_as_draft)) {
513 $comp_alt_uri = $comp_uri . '&amp;action=draft';
514 $comp_alt_string = _("Resume Draft");
515 } else if ($mailbox == $sent_folder) {
516 $comp_alt_uri = $comp_uri . '&amp;action=edit_as_new';
517 $comp_alt_string = _("Edit Message as New");
518 }
519 if (isset($comp_alt_uri)) {
520 $s .= $topbar_delimiter;
521 $s .= $link_open . $comp_alt_uri . $link_close . $comp_alt_string . '</a>';
522 }
2ffa3f57 523
d9c1dccc 524 $s .= '</small></td><td align="center" width="33%"><small>';
525
526 if (!(isset($where) && isset($what)) && !$passed_ent_id) {
527 $prev = findPreviousMessage($mbx_response['EXISTS'], $passed_id);
528 $next = findNextMessage($passed_id);
529 if ($prev != -1) {
530 $uri = $base_uri . 'src/read_body.php?passed_id='.$prev.
531 '&amp;mailbox='.$urlMailbox.'&amp;sort='.$sort.
532 '&amp;startMessage='.$startMessage.'&amp;show_more=0';
533 $s .= '<a href="'.$uri.'">'._("Previous").'</a>';
534 } else {
535 $s .= _("Previous");
536 }
2ffa3f57 537 $s .= $topbar_delimiter;
d9c1dccc 538 if ($next != -1) {
539 $uri = $base_uri . 'src/read_body.php?passed_id='.$next.
540 '&amp;mailbox='.$urlMailbox.'&amp;sort='.$sort.
541 '&amp;startMessage='.$startMessage.'&amp;show_more=0';
542 $s .= '<a href="'.$uri.'">'._("Next").'</a>';
543 } else {
544 $s .= _("Next");
545 }
546 } else if (isset($passed_ent_id) && $passed_ent_id) {
547 /* code for navigating through attached message/rfc822 messages */
548 $url = set_url_var($PHP_SELF, 'passed_ent_id',0);
549 $s .= '<a href="'.$url.'">'._("View Message").'</a>';
550 $par_ent_id = $message->parent->entity_id;
551 if ($par_ent_id) {
552 $par_ent_id = substr($par_ent_id,0,-2);
553 $s .= $topbar_delimiter;
554 $url = set_url_var($PHP_SELF, 'passed_ent_id',$par_ent_id);
555 $s .= '<a href="'.$url.'">'._("Up").'</a>';
556 }
557 }
c615b1da 558
d9c1dccc 559 $s .= '</small></td>' . "\n" . '<td align="right" width="33%" nowrap><small>';
560 $comp_action_uri = $comp_uri . '&amp;action=forward';
561 $s .= $link_open . $comp_action_uri . $link_close . _("Forward") . '</a>';
562 $s .= $topbar_delimiter;
c615b1da 563
d9c1dccc 564 if ($enable_forward_as_attachment) {
565 $comp_action_uri = $comp_uri . '&amp;action=forward_as_attachment';
566 $s .= $link_open . $comp_action_uri . $link_close . _("Forward as Attachment") . '</a>';
567 $s .= $topbar_delimiter;
568 }
a128c967 569
d9c1dccc 570 $comp_action_uri = decodeHeader($comp_uri . '&amp;action=reply');
571 $s .= $link_open . $comp_action_uri . $link_close . _("Reply") . '</a>';
572 $s .= $topbar_delimiter;
573
574 $comp_action_uri = $comp_uri . '&amp;action=reply_all';
575 $s .= $link_open . $comp_action_uri . $link_close . _("Reply All") . '</a>';
576 $s .= '</small></td></tr></table>';
577 do_hook("read_body_menu_top");
578 echo $s;
579 do_hook("read_body_menu_bottom");
c615b1da 580}
581
582function formatToolbar($mailbox, $passed_id, $passed_ent_id, $message, $color) {
fe369c70 583 global $base_uri;
584
d9c1dccc 585 $urlMailbox = urlencode($mailbox);
fe369c70 586 $url = $base_uri.'src/view_header.php?'.$_SERVER['QUERY_STRING'];
d9c1dccc 587
588 $s = "<TR>\n" .
589 '<TD VALIGN="MIDDLE" ALIGN="RIGHT" WIDTH="20%"><B>' . _("Options") . ":&nbsp;&nbsp;</B></TD>\n" .
590 '<TD VALIGN="MIDDLE" ALIGN="LEFT" WIDTH="80%"><SMALL>' .
591 '<a href="'.$url.'">'._("View Full Header").'</a>';
592
593 /* Output the printer friendly link if we are in subtle mode. */
594 $s .= '&nbsp;|&nbsp;' .
595 printer_friendly_link($mailbox, $passed_id, $passed_ent_id, $color);
596 echo $s;
597 do_hook("read_body_header_right");
598 $s = "</SMALL></TD>\n" .
599 "</TR>\n";
600 echo $s;
a128c967 601
4d0cd98b 602}
603
6206f6c4 604/***************************/
2ffa3f57 605/* Main of read_body.php */
6206f6c4 606/***************************/
57257333 607
0b97a708 608/* get the globals we may need */
609
610$username = $_SESSION['username'];
611$key = $_COOKIE['key'];
612$onetimepad = $_SESSION['onetimepad'];
613$msgs = $_SESSION['msgs'];
614$base_uri = $_SESSION['base_uri'];
615$delimiter = $_SESSION['delimiter'];
616
617if (isset($_GET['passed_id'])) {
618 $passed_id = $_GET['passed_id'];
619}
620elseif (isset($_POST['passed_id'])) {
621 $passed_id = $_POST['passed_id'];
622}
623
ce274df9 624if (isset($_GET['passed_ent_id'])) {
625 $passed_ent_id = $_GET['passed_ent_id'];
626}
627elseif (isset($_POST['passed_ent_id'])) {
628 $passed_ent_id = $_POST['passed_ent_id'];
629}
630
0b97a708 631if (isset($_GET['sendreceipt'])) {
632 $sendreceipt = $_GET['sendreceipt'];
633}
634
635if (isset($_GET['sort'])) {
636 $sort = $_GET['sort'];
637}
638elseif (isset($_POST['sort'])) {
639 $sort = $_POST['sort'];
640}
641if (isset($_GET['startMessage'])) {
642 $startMessage = $_GET['startMessage'];
643}
644elseif (isset($_POST['startMessage'])) {
645 $startMessage = $_POST['startMessage'];
646}
647if (isset($_GET['show_more'])) {
648 $show_more = $_GET['show_more'];
649}
1b9f3c04 650if (isset($_GET['show_more_cc'])) {
651 $show_more_cc = $_GET['show_more_cc'];
652}
653if (isset($_GET['show_more_bcc'])) {
654 $show_more_bcc = $_GET['show_more_bcc'];
0b97a708 655}
656if (isset($_GET['mailbox'])) {
657 $mailbox = $_GET['mailbox'];
658}
659elseif (isset($_POST['mailbox'])) {
660 $mailbox = $_POST['mailbox'];
661}
662if (isset($_GET['where'])) {
663 $where = $_GET['where'];
664}
665if (isset($_GET['what'])) {
666 $what = $_GET['what'];
667}
668if (isset($_GET['view_hdr'])) {
669 $view_hdr = $_GET['view_hdr'];
670}
671if (isset($_SESSION['server_sort_array'])) {
672 $server_sort_array = $_SESSION['server_sort_array'];
673}
674if (isset($_SESSION['msgs'])) {
675 $msgs = $_SESSION['msgs'];
676}
677if (isset($_SESSION['msort'])) {
678 $msort = $_SESSION['msort'];
679}
680if (isset($_POST['move_id'])) {
681 $move_id = $_POST['move_id'];
682}
683if (isset($_SESSION['lastTargetMailbox'])) {
684 $lastTargetMailbox = $_SESSION['lastTargetMailbox'];
685}
ce274df9 686if (isset($_SESSION['messages'])) {
687 $messages = $_SESSION['messages'];
688} else {
689 $messages = array();
690}
0b97a708 691
a07cd1a4 692
ce274df9 693
694/* end of get globals */
38c944cc 695global $uid_support, $sqimap_capabilities;
696
6a108031 697if (isset($mailbox)) {
4366bea4 698 $mailbox = urldecode( $mailbox );
699}
38c944cc 700
6206f6c4 701$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
38c944cc 702$mbx_response = sqimap_mailbox_select($imapConnection, $mailbox, false, false, true);
703
38c944cc 704
705/**
706 * $message contains all information about the message
707 * including header and body
708 */
37d2a6ee 709
710$uidvalidity = $mbx_response['UIDVALIDITY'];
711
712if (!isset($messages[$uidvalidity])) {
713 $messages[$uidvalidity] = array();
714}
5200c026 715if (!isset($messages[$uidvalidity][$passed_id]) || !$uid_support) {
716 $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
fc224f68 717 $FirstTimeSee = !$message->is_seen;
718 $message->is_seen = true;
5200c026 719 $messages[$uidvalidity][$passed_id] = $message;
38c944cc 720} else {
fc224f68 721// $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
722 $message = $messages[$uidvalidity][$passed_id];
723 $FirstTimeSee = !$message->is_seen;
5200c026 724}
af568a82 725
dd628162 726if (isset($passed_ent_id) && $passed_ent_id) {
5200c026 727 $message = $message->getEntity($passed_ent_id);
ff9d4297 728 if ($message->type0 != 'message' && $message->type1 != 'rfc822') {
729 $message = $message->parent;
730 }
141a16b2 731 $read = sqimap_run_command ($imapConnection, "FETCH $passed_id BODY[$passed_ent_id.HEADER]", true, $response, $msg, $uid_support);
19d470aa 732 $rfc822_header = new Rfc822Header();
141a16b2 733 $rfc822_header->parseHeader($read);
734 $message->rfc822_header = $rfc822_header;
c615b1da 735} else {
736 $passed_ent_id = 0;
38c944cc 737}
5200c026 738$header = $message->header;
57257333 739
6c31f818 740do_hook('html_top');
57257333 741
6206f6c4 742/****************************************/
743/* Block for handling incoming url vars */
744/****************************************/
5200c026 745
5200c026 746if (isset($sendreceipt)) {
747 if ( !$message->is_mdnsent ) {
748 if (isset($identity) ) {
749 $final_recipient = getPref($data_dir, $username, 'email_address' . '0', '' );
750 } else {
751 $final_recipient = getPref($data_dir, $username, 'email_address', '' );
752 }
753
754 $final_recipient = trim($final_recipient);
755 if ($final_recipient == '' ) {
756 $final_recipient = getPref($data_dir, $username, 'email_address', '' );
757 }
af568a82 758 $supportMDN = ServerMDNSupport($mbx_response["PERMANENTFLAGS"]);
fc224f68 759 if ( SendMDN( $mailbox, $passed_id, $final_recipient, $message, $imapConnection ) > 0 && $supportMDN ) {
c615b1da 760 ToggleMDNflag( true, $imapConnection, $mailbox, $passed_id, $uid_support);
5200c026 761 $message->is_mdnsent = true;
6a108031 762 $messages[$uidvalidity][$passed_id]=$message;
5200c026 763 }
764 ClearAttachments();
765 }
766}
6206f6c4 767/***********************************************/
768/* End of block for handling incoming url vars */
769/***********************************************/
770
38c944cc 771$msgs[$passed_id]['FLAG_SEEN'] = true;
38c944cc 772
5200c026 773$messagebody = '';
c4ad259b 774do_hook('read_body_top');
775if ($show_html_default == 1) {
776 $ent_ar = $message->findDisplayEntity(array());
777} else {
778 $ent_ar = $message->findDisplayEntity(array(), array('text/plain'));
779}
a128c967 780$cnt = count($ent_ar);
781for ($i = 0; $i < $cnt; $i++) {
6a108031 782 $messagebody .= formatBody($imapConnection, $message, $color, $wrap_at, $ent_ar[$i], $passed_id, $mailbox);
a128c967 783 if ($i != $cnt-1) {
784 $messagebody .= '<hr noshade size=1>';
785 }
38c944cc 786}
6a108031 787
c615b1da 788displayPageHeader($color, $mailbox);
7172cad7 789formatMenuBar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_response);
af568a82 790formatEnvheader($mailbox, $passed_id, $passed_ent_id, $message, $color, $FirstTimeSee);
6206f6c4 791echo '<table width="100%" cellpadding="0" cellspacing="0" align="center" border="0">';
792echo ' <tr><td>';
793echo ' <table width="100%" cellpadding="1" cellspacing="0" align="center" border="0" bgcolor="'.$color[9].'">';
a128c967 794echo ' <tr><td>';
6206f6c4 795echo ' <table width="100%" cellpadding="3" cellspacing="0" align="center" border="0">';
796echo ' <tr bgcolor="'.$color[4].'"><td>';
62c36fb6 797echo ' <table cellpadding="5" cellspacing="0" border="0" align="center">';
bc947071 798echo ' <tr>'. html_tag( 'td', '<br>'. $messagebody."\n", 'left').'</td>';
6206f6c4 799echo ' </table>';
800echo ' </td></tr>';
801echo ' </table></td></tr>';
2ffa3f57 802echo ' </table>';
803echo ' </td></tr>';
a128c967 804
805$attachmentsdisplay = formatAttachments($message,$ent_ar,$mailbox, $passed_id);
806if ($attachmentsdisplay) {
2ffa3f57 807 echo ' <tr><td>';
6206f6c4 808 echo ' <table width="100%" cellpadding="1" cellspacing="0" align="center"'.' border="0" bgcolor="'.$color[9].'">';
2ffa3f57 809 echo ' <tr><td>';
810 echo ' <table width="100%" cellpadding="1" cellspacing="0" align="center" border="0" bgcolor="'.$color[4].'">';
6206f6c4 811 echo ' <tr><td ALIGN="left" bgcolor="'.$color[9].'">';
812 echo ' <b>' . _("Attachments") . ':</b>';
813 echo ' </td></tr>';
814 echo ' <tr><td>';
815 echo ' <table width="100%" cellpadding="2" cellspacing="2" align="center"'.' border="0" bgcolor="'.$color[0].'"><tr><td>';
816 echo $attachmentsdisplay;
817 echo ' </td></tr></table>';
818 echo ' </table></td></tr>';
2ffa3f57 819 echo ' </table></td></tr>';
6206f6c4 820 echo ' </table>';
821 echo ' </td></tr>';
a128c967 822}
c615b1da 823echo '</table>';
a07cd1a4 824
825/* show attached images inline -- if pref'fed so */
5be9f195 826if (($attachment_common_show_images) &&
a07cd1a4 827 is_array($attachment_common_show_images_list)) {
828 foreach ($attachment_common_show_images_list as $img) {
ce274df9 829 $imgurl = SM_PATH . 'src/download.php' .
57257333 830 '?' .
cd7b8833 831 'passed_id=' . urlencode($img['passed_id']) .
3d570ba0 832 '&amp;mailbox=' . urlencode($mailbox) .
ff9d4297 833 '&amp;ent_id=' . urlencode($img['ent_id']) .
3d570ba0 834 '&amp;absolute_dl=true';
5be9f195 835
b5058e9e 836 echo html_tag( 'table', "\n" .
d9c1dccc 837 html_tag( 'tr', "\n" .
838 html_tag( 'td', '<img src="' . $imgurl . '">' ."\n", 'left'
839 )
840 ) ,
b5058e9e 841 'center', '', 'cellspacing=0 border="0" cellpadding="2"');
10f0ce72 842 }
a07cd1a4 843}
844
c615b1da 845do_hook('read_body_bottom');
846do_hook('html_bottom');
a07cd1a4 847sqimap_logout($imapConnection);
ce274df9 848/* sessions are written at the end of the script. it's better to register
849 them at the end so we avoid double session_register calls */
850sqsession_register($messages,'messages');
851
a07cd1a4 852?>
c615b1da 853</body>
854</html>