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