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