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