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