Remove obsolete UID support conf.pl code.
[squirrelmail.git] / src / read_body.php
CommitLineData
59177427 1<?php
35586184 2/**
3 * read_body.php
4 *
82d304a0 5 * Copyright (c) 1999-2004 The SquirrelMail Project Team
35586184 6 * Licensed under the GNU GPL. For full terms see the file COPYING.
7 *
8 * This file is used for reading the msgs array and displaying
9 * the resulting emails in the right frame.
10 *
11 * $Id$
8f6f9ba5 12 * @package squirrelmail
a07cd1a4 13 */
35586184 14
8f6f9ba5 15/** Path for SquirrelMail required files. */
86725763 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
1e150c97 32 * and sorted msgs array and return the index of the next message
1fca12b5 33 *
1e150c97 34 * @param int $passed_id The current message UID
1fca12b5 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
1e150c97 74/**
75 * Given an IMAP message id number, this will look it up in the cached
76 * and sorted msgs array and return the index of the previous message
77 *
78 * @param int $passed_id The current message UID
79 * @return the index of the next valid message from the array
80 */
c615b1da 81function findPreviousMessage($numMessages, $passed_id) {
82 global $msort, $sort, $msgs,
83 $thread_sort_messages,
60a3e687 84 $allow_server_sort, $server_sort_array;
a07cd1a4 85 $result = -1;
2728fa19 86 if (!is_array($server_sort_array)) {
87 $thread_sort_messages = 0;
794d59c0 88 $allow_server_sort = FALSE;
2728fa19 89 }
c615b1da 90 if ($thread_sort_messages || $allow_server_sort ) {
d9c1dccc 91 foreach($server_sort_array as $key=>$value) {
c615b1da 92 if ($passed_id == $value) {
60a3e687 93 if ($key == 0) {
60a3e687 94 break;
95 }
d9c1dccc 96 $result = $server_sort_array[$key - 1];
60a3e687 97 break;
789b4d79 98 }
60a3e687 99 }
d9c1dccc 100 } else {
7e818af0 101 if (is_array($msort)) {
102 for (reset($msort); ($key = key($msort)), (isset($key)); next($msort)) {
103 if ($passed_id == $msgs[$key]['ID']) {
104 prev($msort);
105 $key = key($msort);
106 if (isset($key)) {
107 $result = $msgs[$key]['ID'];
108 break;
d9c1dccc 109 }
10f0ce72 110 }
111 }
10f0ce72 112 }
a07cd1a4 113 }
d9c1dccc 114 return $result;
a07cd1a4 115}
10f0ce72 116
a07cd1a4 117/**
1fca12b5 118 * Displays a link to a page where the message is displayed more
119 * "printer friendly".
1e150c97 120 * @param string $mailbox Name of current mailbox
121 * @param int $passed_id
1fca12b5 122 */
1e150c97 123function printer_friendly_link($mailbox, $passed_id, $passed_ent_id) {
124 global $javascript_on, $color;
a07cd1a4 125
c615b1da 126 $params = '?passed_ent_id=' . $passed_ent_id .
c2324b26 127 '&mailbox=' . urlencode($mailbox) .
128 '&passed_id=' . $passed_id;
10f0ce72 129
a07cd1a4 130 $print_text = _("View Printable Version");
10f0ce72 131
c615b1da 132 $result = '';
a07cd1a4 133 /* Output the link. */
134 if ($javascript_on) {
9f42bfc8 135 $result = '<script language="javascript" type="text/javascript">' . "\n" .
136 '<!--' . "\n" .
137 " function printFormat() {\n" .
138 ' window.open("../src/printer_friendly_main.php' .
139 $params . '","Print","width=800,height=600");' . "\n".
140 " }\n" .
141 "// -->\n" .
142 "</script>\n" .
143 "<a href=\"javascript:printFormat();\">$print_text</a>\n";
a07cd1a4 144 } else {
c2324b26 145 $result = '<a target="_blank" href="../src/printer_friendly_bottom.php' .
9f42bfc8 146 "$params\">$print_text</a>\n";
a07cd1a4 147 }
d9c1dccc 148 return $result;
a07cd1a4 149}
150
d9c1dccc 151function ServerMDNSupport($read) {
f69feefe 152 /* escaping $ doesn't work -> \x36 */
781b93d4 153 $ret = preg_match('/(\x36MDNSent|\\\\\*)/i', $read);
d9c1dccc 154 return $ret;
57257333 155}
156
fc224f68 157function SendMDN ( $mailbox, $passed_id, $sender, $message, $imapConnection) {
e95c04ec 158 global $username, $attachment_dir,
fc224f68 159 $version, $attachments, $squirrelmail_language, $default_charset,
d9c1dccc 160 $languages, $useSendmail, $domain, $sent_folder,
161 $popuser, $data_dir, $username;
57257333 162
e95c04ec 163 sqgetGlobalVar('SERVER_NAME', $SERVER_NAME, SQ_SERVER);
0b97a708 164
38bca81c 165 $header = $message->rfc822_header;
57257333 166 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
167
fc224f68 168 $rfc822_header = new Rfc822Header();
d9c1dccc 169 $content_type = new ContentType('multipart/report');
fc224f68 170 $content_type->properties['report-type']='disposition-notification';
d9c1dccc 171
fc224f68 172 set_my_charset();
173 if ($default_charset) {
d9c1dccc 174 $content_type->properties['charset']=$default_charset;
fc224f68 175 }
176 $rfc822_header->content_type = $content_type;
177 $rfc822_header->to[] = $header->dnt;
a20855e4 178 $rfc822_header->subject = _("Read:") . ' ' . encodeHeader($header->subject);
fc224f68 179
27a1d10a 180 // Patch #793504 Return Receipt Failing with <@> from Tim Craig (burny_md)
181 // This merely comes from compose.php and only happens when there is no
182 // email_addr specified in user's identity (which is the startup config)
183 if (ereg("^([^@%/]+)[@%/](.+)$", $username, $usernamedata)) {
184 $popuser = $usernamedata[1];
185 $domain = $usernamedata[2];
186 unset($usernamedata);
187 } else {
188 $popuser = $username;
189 }
fc224f68 190
191 $reply_to = '';
6d021521 192 $ident = get_identities();
193 if(!isset($identity)) $identity = 0;
194 $full_name = $ident[$identity]['full_name'];
195 $from_mail = $ident[$identity]['email_address'];
196 $from_addr = '"'.$full_name.'" <'.$from_mail.'>';
197 $reply_to = $ident[$identity]['reply_to'];
198
27a1d10a 199 if (!$from_mail) {
200 $from_mail = "$popuser@$domain";
201 $from_addr = $from_mail;
fc224f68 202 }
203 $rfc822_header->from = $rfc822_header->parseAddress($from_addr,true);
204 if ($reply_to) {
205 $rfc822_header->reply_to = $rfc822_header->parseAddress($reply_to,true);
206 }
d9c1dccc 207
57257333 208 // part 1 (RFC2298)
57257333 209 $senton = getLongDateString( $header->date );
210 $to_array = $header->to;
211 $to = '';
212 foreach ($to_array as $line) {
af568a82 213 $to .= ' '.$line->getAddress();
57257333 214 }
57257333 215 $now = getLongDateString( time() );
78db1583 216 set_my_charset();
46bb8da8 217 $body = _("Your message") . "\r\n\r\n" .
d39b7293 218 "\t" . _("To:") . ' ' . decodeHeader($to,false,false) . "\r\n" .
219 "\t" . _("Subject:") . ' ' . decodeHeader($header->subject,false,false) . "\r\n" .
46bb8da8 220 "\t" . _("Sent:") . ' ' . $senton . "\r\n" .
221 "\r\n" .
222 sprintf( _("Was displayed on %s"), $now );
f69feefe 223
fc224f68 224 $special_encoding = '';
225 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
226 function_exists($languages[$squirrelmail_language]['XTRA_CODE'])) {
6fbd125b 227 $body = $languages[$squirrelmail_language]['XTRA_CODE']('encode', $body);
d9c1dccc 228 if (strtolower($default_charset) == 'iso-2022-jp') {
229 if (mb_detect_encoding($body) == 'ASCII') {
230 $special_encoding = '8bit';
231 } else {
232 $body = mb_convert_encoding($body, 'JIS');
233 $special_encoding = '7bit';
234 }
235 }
6fbd125b 236 }
fc224f68 237 $part1 = new Message();
238 $part1->setBody($body);
239 $mime_header = new MessageHeader;
240 $mime_header->type0 = 'text';
241 $mime_header->type1 = 'plain';
242 if ($special_encoding) {
243 $mime_header->encoding = $special_encoding;
d9c1dccc 244 } else {
fc224f68 245 $mime_header->encoding = 'us-ascii';
246 }
247 if ($default_charset) {
248 $mime_header->parameters['charset'] = $default_charset;
249 }
250 $part1->mime_header = $mime_header;
251
57257333 252 // part2 (RFC2298)
d9c1dccc 253 $original_recipient = $to;
57257333 254 $original_message_id = $header->message_id;
255
fc224f68 256 $report = "Reporting-UA : $SERVER_NAME ; SquirrelMail (version $version) \r\n";
57257333 257 if ($original_recipient != '') {
fc224f68 258 $report .= "Original-Recipient : $original_recipient\r\n";
57257333 259 }
260 $final_recipient = $sender;
fc224f68 261 $report .= "Final-Recipient: rfc822; $final_recipient\r\n" .
57257333 262 "Original-Message-ID : $original_message_id\r\n" .
263 "Disposition: manual-action/MDN-sent-manually; displayed\r\n";
264
fc224f68 265 $part2 = new Message();
266 $part2->setBody($report);
267 $mime_header = new MessageHeader;
268 $mime_header->type0 = 'message';
269 $mime_header->type1 = 'disposition-notification';
270 $mime_header->encoding = 'us-ascii';
271 $part2->mime_header = $mime_header;
272
273 $composeMessage = new Message();
274 $composeMessage->rfc822_header = $rfc822_header;
275 $composeMessage->addEntity($part1);
276 $composeMessage->addEntity($part2);
277
278
d9c1dccc 279 if ($useSendmail) {
280 require_once(SM_PATH . 'class/deliver/Deliver_SendMail.class.php');
281 global $sendmail_path;
282 $deliver = new Deliver_SendMail();
283 $stream = $deliver->initStream($composeMessage,$sendmail_path);
fc224f68 284 } else {
d9c1dccc 285 require_once(SM_PATH . 'class/deliver/Deliver_SMTP.class.php');
286 $deliver = new Deliver_SMTP();
47a29326 287 global $smtpServerAddress, $smtpPort, $smtp_auth_mech, $pop_before_smtp;
d9c1dccc 288 $authPop = (isset($pop_before_smtp) && $pop_before_smtp) ? true : false;
9bd3b1e6 289 get_smtp_user($user, $pass);
d9c1dccc 290 $stream = $deliver->initStream($composeMessage,$domain,0,
70ce2218 291 $smtpServerAddress, $smtpPort, $user, $pass, $authPop);
d9c1dccc 292 }
293 $success = false;
fc224f68 294 if ($stream) {
d9c1dccc 295 $length = $deliver->mail($composeMessage, $stream);
296 $success = $deliver->finalizeStream($stream);
fc224f68 297 }
d9c1dccc 298 if (!$success) {
00ac2f42 299 $msg = $deliver->dlv_msg . '<br>' .
300 _("Server replied: ") . $deliver->dlv_ret_nr . ' '.
301 $deliver->dlv_server_msg;
d9c1dccc 302 require_once(SM_PATH . 'functions/display_messages.php');
fc224f68 303 plain_error_message($msg, $color);
304 } else {
305 unset ($deliver);
d9c1dccc 306 if (sqimap_mailbox_exists ($imapConnection, $sent_folder)) {
307 sqimap_append ($imapConnection, $sent_folder, $length);
308 require_once(SM_PATH . 'class/deliver/Deliver_IMAP.class.php');
309 $imap_deliver = new Deliver_IMAP();
310 $imap_deliver->mail($composeMessage, $imapConnection);
311 sqimap_append_done ($imapConnection);
312 unset ($imap_deliver);
313 }
314 }
315 return $success;
57257333 316}
317
d9c1dccc 318function ToggleMDNflag ($set ,$imapConnection, $mailbox, $passed_id, $uid_support) {
319 $sg = $set?'+':'-';
320 $cmd = 'STORE ' . $passed_id . ' ' . $sg . 'FLAGS ($MDNSent)';
0892e427 321 $read = sqimap_run_command ($imapConnection, $cmd, true, $response,
507d14ea 322 $readmessage, $uid_support);
57257333 323}
324
325function ClearAttachments() {
d9c1dccc 326 global $username, $attachments, $attachment_dir;
327
328 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
329
330 $rem_attachments = array();
6191bcb1 331 if (isset($attachments)) {
332 foreach ($attachments as $info) {
333 if ($info['session'] == -1) {
334 $attached_file = "$hashed_attachment_dir/$info[localfilename]";
335 if (file_exists($attached_file)) {
336 unlink($attached_file);
337 }
338 } else {
339 $rem_attachments[] = $info;
340 }
341 }
d9c1dccc 342 }
343 $attachments = $rem_attachments;
57257333 344}
345
4d0cd98b 346function formatRecipientString($recipients, $item ) {
d9c1dccc 347 global $show_more_cc, $show_more, $show_more_bcc,
348 $PHP_SELF;
4d0cd98b 349
d9c1dccc 350 $string = '';
38c944cc 351 if ((is_array($recipients)) && (isset($recipients[0]))) {
d9c1dccc 352 $show = false;
38c944cc 353
354 if ($item == 'to') {
d9c1dccc 355 if ($show_more) {
356 $show = true;
357 $url = set_url_var($PHP_SELF, 'show_more',0);
358 } else {
359 $url = set_url_var($PHP_SELF, 'show_more',1);
360 }
361 } else if ($item == 'cc') {
362 if ($show_more_cc) {
363 $show = true;
364 $url = set_url_var($PHP_SELF, 'show_more_cc',0);
365 } else {
366 $url = set_url_var($PHP_SELF, 'show_more_cc',1);
367 }
368 } else if ($item == 'bcc') {
369 if ($show_more_bcc) {
370 $show = true;
371 $url = set_url_var($PHP_SELF, 'show_more_bcc',0);
372 } else {
373 $url = set_url_var($PHP_SELF, 'show_more_bcc',1);
374 }
375 }
376
377 $cnt = count($recipients);
378 foreach($recipients as $r) {
a91189d6 379 $add = decodeHeader($r->getAddress(true));
d9c1dccc 380 if ($string) {
381 $string .= '<BR>' . $add;
382 } else {
383 $string = $add;
384 if ($cnt > 1) {
38c944cc 385 $string .= '&nbsp;(<A HREF="'.$url;
d9c1dccc 386 if ($show) {
387 $string .= '">'._("less").'</A>)';
388 } else {
389 $string .= '">'._("more").'</A>)';
390 break;
391 }
392 }
393 }
1fca12b5 394 }
4d0cd98b 395 }
c615b1da 396 return $string;
397}
398
af568a82 399function formatEnvheader($mailbox, $passed_id, $passed_ent_id, $message,
400 $color, $FirstTimeSee) {
a94c1db1 401 global $msn_user_support, $default_use_mdn, $default_use_priority,
77836429 402 $show_xmailer_default, $mdn_user_support, $PHP_SELF, $javascript_on,
403 $squirrelmail_language;
38bca81c 404
d9c1dccc 405 $header = $message->rfc822_header;
406 $env = array();
bdb9ce72 407 $env[_("Subject")] = str_replace("&nbsp;"," ",decodeHeader($header->subject));
7893c8a5 408
d9c1dccc 409 $from_name = $header->getAddr_s('from');
d6b6d221 410 if (!$from_name)
d9c1dccc 411 $from_name = $header->getAddr_s('sender');
d6b6d221 412 if (!$from_name)
413 $env[_("From")] = _("Unknown sender");
414 else
415 $env[_("From")] = decodeHeader($from_name);
d9c1dccc 416 $env[_("Date")] = getLongDateString($header->date);
417 $env[_("To")] = formatRecipientString($header->to, "to");
418 $env[_("Cc")] = formatRecipientString($header->cc, "cc");
419 $env[_("Bcc")] = formatRecipientString($header->bcc, "bcc");
420 if ($default_use_priority) {
0e8006dc 421 $env[_("Priority")] = htmlspecialchars(getPriorityStr($header->priority));
d9c1dccc 422 }
423 if ($show_xmailer_default) {
a91189d6 424 $env[_("Mailer")] = decodeHeader($header->xmailer);
d9c1dccc 425 }
426 if ($default_use_mdn) {
427 if ($mdn_user_support) {
428 if ($header->dnt) {
429 if ($message->is_mdnsent) {
509ce88e 430 $env[_("Read receipt")] = _("sent");
d9c1dccc 431 } else {
432 $env[_("Read receipt")] = _("requested");
8e1d27aa 433 if (!(handleAsSent($mailbox) ||
d9c1dccc 434 $message->is_deleted ||
435 $passed_ent_id)) {
436 $mdn_url = $PHP_SELF . '&sendreceipt=1';
437 if ($FirstTimeSee && $javascript_on) {
438 $script = '<script language="JavaScript" type="text/javascript">' . "\n";
439 $script .= '<!--'. "\n";
440 $script .= 'if(window.confirm("' .
441 _("The message sender has requested a response to indicate that you have read this message. Would you like to send a receipt?") .
442 '")) { '."\n" .
443 ' sendMDN()'.
444 '}' . "\n";
445 $script .= '// -->'. "\n";
446 $script .= '</script>'. "\n";
447 echo $script;
448 }
449 $env[_("Read receipt")] .= '&nbsp;<a href="' . $mdn_url . '">[' .
450 _("Send read receipt now") . ']</a>';
451 }
452 }
453 }
454 }
455 }
c615b1da 456
a94c1db1 457 $s = '<TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="2" BORDER="0"';
0e02d604 458 $s .= ' ALIGN="center" BGCOLOR="'.$color[0].'">';
d9c1dccc 459 foreach ($env as $key => $val) {
460 if ($val) {
461 $s .= '<TR>';
462 $s .= html_tag('TD', '<B>' . $key . ':&nbsp;&nbsp;</B>', 'RIGHT', '', 'VALIGN="TOP" WIDTH="20%"') . "\n";
463 $s .= html_tag('TD', $val, 'left', '', 'VALIGN="TOP" WIDTH="80%"') . "\n";
464 $s .= '</TR>';
465 }
466 }
a94c1db1 467 echo '<TABLE BGCOLOR="'.$color[9].'" WIDTH="100%" CELLPADDING="1"'.
da9a8410 468 ' CELLSPACING="0" BORDER="0" ALIGN="center">'."\n";
a94c1db1 469 echo '<TR><TD HEIGHT="5" COLSPAN="2" BGCOLOR="'.
470 $color[4].'"></TD></TR><TR><TD align=center>'."\n";
d9c1dccc 471 echo $s;
00ac2f42 472 do_hook('read_body_header');
d9c1dccc 473 formatToolbar($mailbox, $passed_id, $passed_ent_id, $message, $color);
474 echo '</TABLE>';
a94c1db1 475 echo '</TD></TR><TR><TD HEIGHT="5" COLSPAN="2" BGCOLOR="'.$color[4].'"></TD></TR>'."\n";
feb5ec1b 476 echo '</TABLE>';
d9c1dccc 477}
c615b1da 478
1e150c97 479/**
480 * Format message toolbar
481 *
482 * @param string $mailbox Name of current mailbox
483 * @param int $passed_id UID of current message
484 * @param int $passed_ent_id Id of entity within message
485 * @param object $message Current message object
486 * @param object $mbx_response
487 */
488function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_response, $nav_on_top = TRUE) {
a94c1db1 489 global $base_uri, $draft_folder, $where, $what, $color, $sort,
1e150c97 490 $startMessage, $PHP_SELF, $save_as_draft, $uid_support,
491 $enable_forward_as_attachment, $imapConnection, $lastTargetMailbox,
48dc9174 492 $data_dir, $username, $delete_prev_next_display;
c615b1da 493
d9c1dccc 494 $topbar_delimiter = '&nbsp;|&nbsp;';
1e150c97 495 $double_delimiter = '&nbsp;&nbsp;&nbsp;&nbsp;';
d9c1dccc 496 $urlMailbox = urlencode($mailbox);
c615b1da 497
d62c4938 498 $comp_uri = 'src/compose.php' .
1e150c97 499 '?passed_id=' . $passed_id .
500 '&amp;mailbox=' . $urlMailbox .
501 '&amp;startMessage=' . $startMessage .
502 (isset($passed_ent_id)?'&amp;passed_ent_id='.$passed_ent_id:'');
2ffa3f57 503
1e150c97 504 $msgs_url = $base_uri . 'src/';
2ffa3f57 505
1e150c97 506 // BEGIN NAV ROW - PREV/NEXT, DEL PREV/NEXT, LINKS TO INDEX, etc.
45c1ed84 507 $nav_row = '<tr><td align="left" colspan="2" style="border: 1px solid '.$color[9].';"><small>';
e55c441a 508
1e150c97 509 // Create Prev & Next links
510 // Handle nested entities first (i.e. Mime Attach parts)
511 if (isset($passed_ent_id) && $passed_ent_id) {
512 // code for navigating through attached message/rfc822 messages
d9c1dccc 513 $url = set_url_var($PHP_SELF, 'passed_ent_id',0);
70bdc740 514 $entities = array();
515 $entity_count = array();
516 $c = 0;
f2f03410 517
70bdc740 518 foreach($message->parent->entities as $ent) {
9f42bfc8 519 if ($ent->type0 == 'message' && $ent->type1 == 'rfc822') {
520 $c++;
521 $entity_count[$c] = $ent->entity_id;
522 $entities[$ent->entity_id] = $c;
523 }
70bdc740 524 }
1e150c97 525
70bdc740 526 $prev_link = _("Previous");
70bdc740 527 if($entities[$passed_ent_id] > 1) {
528 $prev_ent_id = $entity_count[$entities[$passed_ent_id] - 1];
529 $prev_link = '<a href="'
530 . set_url_var($PHP_SELF, 'passed_ent_id', $prev_ent_id)
531 . '">' . $prev_link . '</a>';
532 }
1e150c97 533
534 $next_link = _("Next");
70bdc740 535 if($entities[$passed_ent_id] < $c) {
536 $next_ent_id = $entity_count[$entities[$passed_ent_id] + 1];
537 $next_link = '<a href="'
538 . set_url_var($PHP_SELF, 'passed_ent_id', $next_ent_id)
539 . '">' . $next_link . '</a>';
540 }
1e150c97 541
d9c1dccc 542 $par_ent_id = $message->parent->entity_id;
1e150c97 543 $up_link = '';
d9c1dccc 544 if ($par_ent_id) {
545 $par_ent_id = substr($par_ent_id,0,-2);
1e150c97 546 if ( $par_ent_id != 0 ) {
547 $up_link = $topbar_delimiter;
548 $url = set_url_var($PHP_SELF, 'passed_ent_id',$par_ent_id);
549 $up_link .= '<a href="'.$url.'">'._("Up").'</a>';
550 }
551 }
552
553 $nav_row .= $prev_link . $up_link . $topbar_delimiter . $next_link;
abafb676 554 $nav_row .= $double_delimiter . '[<a href="'.$url.'">'._("View Message").'</a>]';
1e150c97 555
556 // Prev/Next links for regular messages
557 } else if ( !(isset($where) && isset($what)) ) {
558 $prev = findPreviousMessage($mbx_response['EXISTS'], $passed_id);
559 $next = findNextMessage($passed_id);
560
561 $prev_link = _("Previous");
562 if ($prev >= 0) {
563 $uri = $base_uri . 'src/read_body.php?passed_id='.$prev.
564 '&amp;mailbox='.$urlMailbox.'&amp;sort='.$sort.
565 '&amp;startMessage='.$startMessage.'&amp;show_more=0';
566 $prev_link = '<a href="'.$uri.'">'.$prev_link.'</a>';
d9c1dccc 567 }
1e150c97 568
569 $next_link = _("Next");
570 if ($next >= 0) {
571 $uri = $base_uri . 'src/read_body.php?passed_id='.$next.
572 '&amp;mailbox='.$urlMailbox.'&amp;sort='.$sort.
573 '&amp;startMessage='.$startMessage.'&amp;show_more=0';
574 $next_link = '<a href="'.$uri.'">'.$next_link.'</a>';
575 }
576
1e150c97 577 // Only bother with Delete & Prev and Delete & Next IF
578 // we have UID support, and top display is enabled.
4267d5de 579 if ( $uid_support && $delete_prev_next_display == 1 ) {
45c1ed84 580 $del_prev_link = _("Delete & Prev");
1e150c97 581 if ($prev >= 0) {
582 $uri = $base_uri . 'src/read_body.php?passed_id='.$prev.
583 '&amp;mailbox='.$urlMailbox.'&amp;sort='.$sort.
584 '&amp;startMessage='.$startMessage.'&amp;show_more=0'.
585 '&amp;delete_id='.$passed_id;
45c1ed84 586 $del_prev_link = '<a href="'.$uri.'">'.$del_prev_link.'</a>';
1e150c97 587 }
588
45c1ed84 589 $del_next_link = _("Delete & Next");
1e150c97 590 if ($next >= 0) {
591 $uri = $base_uri . 'src/read_body.php?passed_id='.$next.
592 '&amp;mailbox='.$urlMailbox.'&amp;sort='.$sort.
593 '&amp;startMessage='.$startMessage.'&amp;show_more=0'.
594 '&amp;delete_id='.$passed_id;
45c1ed84 595 $del_next_link = '<a href="'.$uri.'">'.$del_next_link.'</a>';
1e150c97 596 }
1e150c97 597 }
45c1ed84 598
abafb676 599 $nav_row .= '['.$prev_link.$topbar_delimiter.$next_link.']';
600 if ( isset($del_prev_link) && isset($del_next_link) )
601 $nav_row .= $double_delimiter.'['.$del_prev_link.$topbar_delimiter.$del_next_link.']';
1e150c97 602 }
603
604 // Start with Search Results or Message List link.
605 if (isset($where) && isset($what)) {
606 $msgs_url .= 'search.php?where=' . urlencode($where) .
607 '&amp;what=' . urlencode($what) . '&amp;mailbox=' . $urlMailbox;
608 $msgs_str = _("Search Results");
609 } else {
610 $msgs_url .= 'right_main.php?sort=' . $sort . '&amp;startMessage=' .
611 $startMessage . '&amp;mailbox=' . $urlMailbox;
612 $msgs_str = _("Message List");
613 }
614 $nav_row .= $double_delimiter .
abafb676 615 '[<a href="' . $msgs_url . '">' . $msgs_str . '</a>]';
1e150c97 616
617 $nav_row .= '</small></td></tr>';
618
619
620 // BEGIN MENU ROW - DELETE/REPLY/FORWARD/MOVE/etc.
621 $menu_row = '<tr bgcolor="'.$color[9].'"><td><small>';
622
623 // If Draft folder - create Resume link
624 if (($mailbox == $draft_folder) && ($save_as_draft)) {
625 $comp_alt_uri = $comp_uri . '&amp;smaction=draft';
626 $comp_alt_string = _("Resume Draft");
627 } else if (handleAsSent($mailbox)) {
628 // If in Sent folder, edit as new
629 $comp_alt_uri = $comp_uri . '&amp;smaction=edit_as_new';
630 $comp_alt_string = _("Edit Message as New");
631 }
632
633 // Show Alt URI for Draft/Sent
634 if (isset($comp_alt_uri)) {
1e150c97 635 $menu_row .= makeComposeLink($comp_alt_uri, $comp_alt_string);
b2811304 636 $menu_row .= $topbar_delimiter . "\n";
1e150c97 637 }
638
1e150c97 639 $comp_action_uri = $comp_uri . '&amp;smaction=reply';
b2811304 640 $menu_row .= makeComposeLink($comp_action_uri, _("Reply")) . "\n";
1e150c97 641
642 $comp_action_uri = $comp_uri . '&amp;smaction=reply_all';
643 $menu_row .= $topbar_delimiter;
b2811304 644 $menu_row .= makeComposeLink($comp_action_uri, _("Reply All")) . "\n";
1e150c97 645
c615b1da 646
6f09fb70 647 $comp_action_uri = $comp_uri . '&amp;smaction=forward';
1e150c97 648 $menu_row .= $topbar_delimiter;
b2811304 649 $menu_row .= makeComposeLink($comp_action_uri, _("Forward")) . "\n";
c615b1da 650
d9c1dccc 651 if ($enable_forward_as_attachment) {
6f09fb70 652 $comp_action_uri = $comp_uri . '&amp;smaction=forward_as_attachment';
1e150c97 653 $menu_row .= $topbar_delimiter;
b2811304 654 $menu_row .= makeComposeLink($comp_action_uri, _("Forward as Attachment")) . "\n";
d9c1dccc 655 }
a128c967 656
abafb676 657 $delete_link = _("Delete");
658 if (!(isset($passed_ent_id) && $passed_ent_id)) {
659 $delete_url = $base_uri . 'src/delete_message.php?mailbox=' . $urlMailbox .
660 '&amp;message=' . $passed_id . '&amp;';
661
662 if ($where && $what) {
663 $delete_url .= 'where=' . urlencode($where) . '&amp;what=' . urlencode($what);
664 } else {
665 $delete_url .= 'sort=' . $sort . '&amp;startMessage=' . $startMessage;
666 }
667 $delete_link = '<a href="' . $delete_url . '">' . $delete_link . '</a>';
668 $delete_link .= '&nbsp;(<a href="' . $delete_url.'&amp;bypass_trash=1">'
669 ._("Bypass Trash").'</a>)';
670
671 }
b2811304 672 $menu_row .= $topbar_delimiter.$delete_link . "\n";
abafb676 673
674
1e150c97 675 // Add top move link
676 $menu_row .= '</small></td><td align="right">';
b2811304 677 if ( !(isset($passed_ent_id) && $passed_ent_id) ) {
b2811304 678
679 $current_box = 'mailbox='.$mailbox.'&sort='.$sort.'&startMessage='.$startMessage;
1c13663f 680
681 // Set subsequent location based on whether or not there is a 'next' message.
b2811304 682 if ( isset($next) && $next >= 0 ) {
1c13663f 683 $location = $base_uri . 'src/read_body.php?passed_id='.$next.'&';
b2811304 684 } else {
1c13663f 685 $location = $base_uri . 'src/right_main.php?';
b2811304 686 }
b2811304 687
1c13663f 688 $menu_row .= '<form action="'.$base_uri.'src/move_messages.php?'.$current_box.'" method="post">'.
1e150c97 689 '<small><input type="hidden" name="show_more" value="0" />'.
1c13663f 690 '<input type="hidden" name="location" value="'.$location.$current_box.'" />'.
b2811304 691 '<input type="hidden" name="msg[0]" value="'.$passed_id.'" />'._("Move to:") .
1e150c97 692 '<select name="targetMailbox" style="padding: 0px; margin: 0px">';
b2811304 693
1e150c97 694 if (isset($lastTargetMailbox) && !empty($lastTargetMailbox)) {
695 $menu_row .= sqimap_mailbox_option_list($imapConnection, array(strtolower($lastTargetMailbox)));
696 } else {
697 $menu_row .= sqimap_mailbox_option_list($imapConnection);
698 }
b2811304 699 $menu_row .= '</select> ';
700
b2811304 701 $menu_row .= getButton('SUBMIT', 'moveButton',_("Move")) . "\n" . '</form>';
1e150c97 702 }
703 $menu_row .= '</td></tr>';
d9c1dccc 704
1e150c97 705 // echo rows, with hooks
764971df 706 $ret = do_hook_function('read_body_menu_top', array($nav_row, $menu_row));
988e24f6 707 if (is_array($ret)) {
708 if (isset($ret[0]) && !empty($ret[0])) {
709 $nav_row = $ret[0];
710 }
711 if (isset($ret[1]) && !empty($ret[1])) {
712 $menu_row = $ret[1];
713 }
764971df 714 }
1e150c97 715 echo '<table width="100%" cellpadding="3" cellspacing="0" align="center" border="0">';
716 echo $nav_on_top ? $nav_row . $menu_row : $menu_row . $nav_row;
717 echo '</table>'."\n";
d62c4938 718 do_hook('read_body_menu_bottom');
c615b1da 719}
720
721function formatToolbar($mailbox, $passed_id, $passed_ent_id, $message, $color) {
a94c1db1 722 global $base_uri;
fe369c70 723
d9c1dccc 724 $urlMailbox = urlencode($mailbox);
e95c04ec 725 sqgetGlobalVar('QUERY_STRING', $query_string, SQ_SERVER);
726 $url = $base_uri.'src/view_header.php?'.$query_string;
d9c1dccc 727
a94c1db1 728 $s = "<TR>\n" .
98fb28fd 729 html_tag( 'td', '', 'right', '', 'VALIGN="MIDDLE" WIDTH="20%"' ) . '<B>' . _("Options") . ":&nbsp;&nbsp;</B></TD>\n" .
730 html_tag( 'td', '', 'left', '', 'VALIGN="MIDDLE" WIDTH="80%"' ) . '<SMALL>' .
d9c1dccc 731 '<a href="'.$url.'">'._("View Full Header").'</a>';
732
733 /* Output the printer friendly link if we are in subtle mode. */
734 $s .= '&nbsp;|&nbsp;' .
1e150c97 735 printer_friendly_link($mailbox, $passed_id, $passed_ent_id);
d9c1dccc 736 echo $s;
737 do_hook("read_body_header_right");
738 $s = "</SMALL></TD>\n" .
739 "</TR>\n";
740 echo $s;
a128c967 741
4d0cd98b 742}
743
6206f6c4 744/***************************/
2ffa3f57 745/* Main of read_body.php */
6206f6c4 746/***************************/
57257333 747
0b97a708 748/* get the globals we may need */
749
1e12d1ff 750sqgetGlobalVar('key', $key, SQ_COOKIE);
e95c04ec 751sqgetGlobalVar('username', $username, SQ_SESSION);
752sqgetGlobalVar('onetimepad',$onetimepad, SQ_SESSION);
e95c04ec 753sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION);
1e12d1ff 754sqgetGlobalVar('base_uri', $base_uri, SQ_SESSION);
755
e95c04ec 756sqgetGlobalVar('msgs', $msgs, SQ_SESSION);
757sqgetGlobalVar('msort', $msort, SQ_SESSION);
758sqgetGlobalVar('lastTargetMailbox', $lastTargetMailbox, SQ_SESSION);
759sqgetGlobalVar('server_sort_array', $server_sort_array, SQ_SESSION);
760if (!sqgetGlobalVar('messages', $messages, SQ_SESSION) ) {
761 $messages = array();
ce274df9 762}
763
e95c04ec 764/** GET VARS */
765sqgetGlobalVar('sendreceipt', $sendreceipt, SQ_GET);
766sqgetGlobalVar('where', $where, SQ_GET);
767sqgetGlobalVar('what', $what, SQ_GET);
768if ( sqgetGlobalVar('show_more', $temp, SQ_GET) ) {
769 $show_more = (int) $temp;
1b9f3c04 770}
e95c04ec 771if ( sqgetGlobalVar('show_more_cc', $temp, SQ_GET) ) {
772 $show_more_cc = (int) $temp;
0b97a708 773}
e95c04ec 774if ( sqgetGlobalVar('show_more_bcc', $temp, SQ_GET) ) {
775 $show_more_bcc = (int) $temp;
0b97a708 776}
e95c04ec 777if ( sqgetGlobalVar('view_hdr', $temp, SQ_GET) ) {
778 $view_hdr = (int) $temp;
0b97a708 779}
e95c04ec 780
e95c04ec 781/** GET/POST VARS */
782sqgetGlobalVar('passed_ent_id', $passed_ent_id);
783sqgetGlobalVar('mailbox', $mailbox);
784
785if ( sqgetGlobalVar('passed_id', $temp) ) {
786 $passed_id = (int) $temp;
0b97a708 787}
e95c04ec 788if ( sqgetGlobalVar('sort', $temp) ) {
789 $sort = (int) $temp;
0b97a708 790}
e95c04ec 791if ( sqgetGlobalVar('startMessage', $temp) ) {
792 $startMessage = (int) $temp;
ce274df9 793}
0b97a708 794
ce274df9 795/* end of get globals */
653ff1e6 796global $uid_support, $sqimap_capabilities, $lastTargetMailbox;
38c944cc 797
6206f6c4 798$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
9f42bfc8 799$mbx_response = sqimap_mailbox_select($imapConnection, $mailbox, false, false, true);
38c944cc 800
1e150c97 801/**
802 * Process Delete from delete-move-next
803 * but only if delete_id was set
804 */
805if ( sqgetGlobalVar('delete_id', $delete_id, SQ_GET) ) {
653ff1e6 806 sqimap_messages_delete($imapConnection, $delete_id, $delete_id, $mailbox);
1e150c97 807
653ff1e6 808 sqimap_mailbox_expunge_dmn($delete_id);
1e150c97 809}
810
38c944cc 811/**
812 * $message contains all information about the message
813 * including header and body
814 */
37d2a6ee 815
816$uidvalidity = $mbx_response['UIDVALIDITY'];
9f42bfc8 817
37d2a6ee 818if (!isset($messages[$uidvalidity])) {
819 $messages[$uidvalidity] = array();
9f42bfc8 820}
5200c026 821if (!isset($messages[$uidvalidity][$passed_id]) || !$uid_support) {
822 $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
fc224f68 823 $FirstTimeSee = !$message->is_seen;
824 $message->is_seen = true;
5200c026 825 $messages[$uidvalidity][$passed_id] = $message;
38c944cc 826} else {
fc224f68 827// $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
828 $message = $messages[$uidvalidity][$passed_id];
829 $FirstTimeSee = !$message->is_seen;
5200c026 830}
af568a82 831
dd628162 832if (isset($passed_ent_id) && $passed_ent_id) {
5200c026 833 $message = $message->getEntity($passed_ent_id);
ff9d4297 834 if ($message->type0 != 'message' && $message->type1 != 'rfc822') {
835 $message = $message->parent;
836 }
141a16b2 837 $read = sqimap_run_command ($imapConnection, "FETCH $passed_id BODY[$passed_ent_id.HEADER]", true, $response, $msg, $uid_support);
19d470aa 838 $rfc822_header = new Rfc822Header();
141a16b2 839 $rfc822_header->parseHeader($read);
840 $message->rfc822_header = $rfc822_header;
c615b1da 841} else {
842 $passed_ent_id = 0;
38c944cc 843}
5200c026 844$header = $message->header;
57257333 845
6c31f818 846do_hook('html_top');
57257333 847
6206f6c4 848/****************************************/
849/* Block for handling incoming url vars */
850/****************************************/
5200c026 851
5200c026 852if (isset($sendreceipt)) {
853 if ( !$message->is_mdnsent ) {
27a1d10a 854 $final_recipient = '';
855 if ((isset($identity)) && ($identity != 0)) //Main identity
856 $final_recipient = trim(getPref($data_dir, $username, 'email_address' . $identity, '' ));
857 if ($final_recipient == '' )
858 $final_recipient = trim(getPref($data_dir, $username, 'email_address', '' ));
af568a82 859 $supportMDN = ServerMDNSupport($mbx_response["PERMANENTFLAGS"]);
fc224f68 860 if ( SendMDN( $mailbox, $passed_id, $final_recipient, $message, $imapConnection ) > 0 && $supportMDN ) {
c615b1da 861 ToggleMDNflag( true, $imapConnection, $mailbox, $passed_id, $uid_support);
5200c026 862 $message->is_mdnsent = true;
6a108031 863 $messages[$uidvalidity][$passed_id]=$message;
5200c026 864 }
865 ClearAttachments();
866 }
867}
6206f6c4 868/***********************************************/
869/* End of block for handling incoming url vars */
870/***********************************************/
871
38c944cc 872$msgs[$passed_id]['FLAG_SEEN'] = true;
9f42bfc8 873
874$messagebody = '';
c4ad259b 875do_hook('read_body_top');
876if ($show_html_default == 1) {
877 $ent_ar = $message->findDisplayEntity(array());
878} else {
879 $ent_ar = $message->findDisplayEntity(array(), array('text/plain'));
880}
a128c967 881$cnt = count($ent_ar);
882for ($i = 0; $i < $cnt; $i++) {
6a108031 883 $messagebody .= formatBody($imapConnection, $message, $color, $wrap_at, $ent_ar[$i], $passed_id, $mailbox);
a128c967 884 if ($i != $cnt-1) {
885 $messagebody .= '<hr noshade size=1>';
886 }
38c944cc 887}
e55c441a 888
c615b1da 889displayPageHeader($color, $mailbox);
7172cad7 890formatMenuBar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_response);
af568a82 891formatEnvheader($mailbox, $passed_id, $passed_ent_id, $message, $color, $FirstTimeSee);
a94c1db1 892echo '<table width="100%" cellpadding="0" cellspacing="0" align="center" border="0">';
6206f6c4 893echo ' <tr><td>';
a94c1db1 894echo ' <table width="100%" cellpadding="1" cellspacing="0" align="center" border="0" bgcolor="'.$color[9].'">';
a128c967 895echo ' <tr><td>';
a94c1db1 896echo ' <table width="100%" cellpadding="3" cellspacing="0" align="center" border="0">';
6206f6c4 897echo ' <tr bgcolor="'.$color[4].'"><td>';
98fb28fd 898// echo ' <table cellpadding="1" cellspacing="5" align="left" border="0">';
899echo html_tag( 'table' ,'' , 'left', '', 'cellpadding="1" cellspacing="5" border="0"' );
ce810ea7 900echo ' <tr>' . html_tag( 'td', '<br>'. $messagebody."\n", 'left')
6c7b5d8c 901 . '</tr>';
6206f6c4 902echo ' </table>';
903echo ' </td></tr>';
904echo ' </table></td></tr>';
2ffa3f57 905echo ' </table>';
906echo ' </td></tr>';
a128c967 907
d0a2476a 908echo '<TR><TD HEIGHT="5" COLSPAN="2" BGCOLOR="'.
6c7b5d8c 909 $color[4].'"></TD></TR>'."\n";
d0a2476a 910
a128c967 911$attachmentsdisplay = formatAttachments($message,$ent_ar,$mailbox, $passed_id);
912if ($attachmentsdisplay) {
8acd2fb5 913 echo ' </table>';
6206f6c4 914 echo ' <table width="100%" cellpadding="1" cellspacing="0" align="center"'.' border="0" bgcolor="'.$color[9].'">';
2ffa3f57 915 echo ' <tr><td>';
d0a2476a 916 echo ' <table width="100%" cellpadding="0" cellspacing="0" align="center" border="0" bgcolor="'.$color[4].'">';
98fb28fd 917 echo ' <tr>' . html_tag( 'td', '', 'left', $color[9] );
6206f6c4 918 echo ' <b>' . _("Attachments") . ':</b>';
919 echo ' </td></tr>';
920 echo ' <tr><td>';
921 echo ' <table width="100%" cellpadding="2" cellspacing="2" align="center"'.' border="0" bgcolor="'.$color[0].'"><tr><td>';
922 echo $attachmentsdisplay;
923 echo ' </td></tr></table>';
6c7b5d8c 924 echo ' </td></tr></table>';
6206f6c4 925 echo ' </td></tr>';
6c7b5d8c 926 echo '<TR><TD HEIGHT="5" COLSPAN="2" BGCOLOR="'.
927 $color[4].'"></TD></TR>';
a128c967 928}
c615b1da 929echo '</table>';
a07cd1a4 930
931/* show attached images inline -- if pref'fed so */
5be9f195 932if (($attachment_common_show_images) &&
a07cd1a4 933 is_array($attachment_common_show_images_list)) {
934 foreach ($attachment_common_show_images_list as $img) {
ce274df9 935 $imgurl = SM_PATH . 'src/download.php' .
57257333 936 '?' .
cd7b8833 937 'passed_id=' . urlencode($img['passed_id']) .
3d570ba0 938 '&amp;mailbox=' . urlencode($mailbox) .
ff9d4297 939 '&amp;ent_id=' . urlencode($img['ent_id']) .
3d570ba0 940 '&amp;absolute_dl=true';
5be9f195 941
b5058e9e 942 echo html_tag( 'table', "\n" .
d9c1dccc 943 html_tag( 'tr', "\n" .
944 html_tag( 'td', '<img src="' . $imgurl . '">' ."\n", 'left'
945 )
946 ) ,
b5058e9e 947 'center', '', 'cellspacing=0 border="0" cellpadding="2"');
10f0ce72 948 }
a07cd1a4 949}
950
4267d5de 951formatMenuBar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_response, FALSE);
1e150c97 952
c615b1da 953do_hook('read_body_bottom');
954do_hook('html_bottom');
a07cd1a4 955sqimap_logout($imapConnection);
ce274df9 956/* sessions are written at the end of the script. it's better to register
957 them at the end so we avoid double session_register calls */
958sqsession_register($messages,'messages');
e55c441a 959
dcc1cc82 960?>
961</body>
962</html>