findAddress() can return FALSE as well as zero
[squirrelmail.git] / src / read_body.php
CommitLineData
59177427 1<?php
134e4174 2
35586184 3/**
4 * read_body.php
5 *
35586184 6 * This file is used for reading the msgs array and displaying
7 * the resulting emails in the right frame.
8 *
c0d96801 9 * @copyright 1999-2012 The SquirrelMail Project Team
4b4abf93 10 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
30967a1e 11 * @version $Id$
8f6f9ba5 12 * @package squirrelmail
a07cd1a4 13 */
35586184 14
ebd2391c 15/** This is the read_body page */
16define('PAGE_NAME', 'read_body');
17
30967a1e 18/**
202bcbcc 19 * Include the SquirrelMail initialization file.
30967a1e 20 */
202bcbcc 21require('../include/init.php');
86725763 22
23/* SquirrelMail required files. */
86725763 24require_once(SM_PATH . 'functions/imap.php');
202bcbcc 25require_once(SM_PATH . 'functions/imap_asearch.php'); // => move to mailbox_display
86725763 26require_once(SM_PATH . 'functions/mime.php');
27require_once(SM_PATH . 'functions/date.php');
28require_once(SM_PATH . 'functions/url_parser.php');
6d021521 29require_once(SM_PATH . 'functions/identity.php');
202bcbcc 30require_once(SM_PATH . 'functions/mailbox_display.php');
31require_once(SM_PATH . 'functions/forms.php');
32require_once(SM_PATH . 'functions/attachment_common.php');
628bce99 33require_once(SM_PATH . 'functions/compose.php');
38c944cc 34
a07cd1a4 35/**
1fca12b5 36 * Given an IMAP message id number, this will look it up in the cached
1e150c97 37 * and sorted msgs array and return the index of the next message
1fca12b5 38 *
1e150c97 39 * @param int $passed_id The current message UID
1fca12b5 40 * @return the index of the next valid message from the array
41 */
e0e30169 42function findNextMessage($uidset,$passed_id='backwards') {
324ac3c5 43 if (!is_array($uidset)) {
44 return -1;
45 }
e0e30169 46 if ($passed_id=='backwards' || !is_array($uidset)) { // check for backwards compattibilty gpg plugin
47 $passed_id = $uidset;
e0e30169 48 }
91c27aee 49 $result = sqm_array_get_value_by_offset($uidset,$passed_id,1);
50 if ($result === false) {
51 return -1;
52 } else {
53 return $result;
10f0ce72 54 }
a07cd1a4 55}
56
1e150c97 57/**
58 * Given an IMAP message id number, this will look it up in the cached
59 * and sorted msgs array and return the index of the previous message
60 *
61 * @param int $passed_id The current message UID
62 * @return the index of the next valid message from the array
63 */
e0e30169 64
65function findPreviousMessage($uidset, $passed_id) {
324ac3c5 66 if (!is_array($uidset)) {
67 return -1;
e0e30169 68 }
91c27aee 69 $result = sqm_array_get_value_by_offset($uidset,$passed_id,-1);
70 if ($result === false) {
71 return -1;
72 } else {
73 return $result;
a07cd1a4 74 }
a07cd1a4 75}
10f0ce72 76
7d020720 77function html_toggle_href ($mailbox, $passed_id, $passed_ent_id, $message) {
7277191e 78 global $base_uri, $show_html_default;
79
80 $has_html = false;
81 if ($message->header->type0 == 'message' && $message->header->type1 == 'rfc822') {
82 $type0 = $message->rfc822_header->content_type->type0;
83 $type1 = $message->rfc822_header->content_type->type1;
84 } else {
85 $type0 = $message->header->type0;
86 $type1 = $message->header->type1;
87 }
88 if($type0 == 'multipart' &&
7d020720 89 ($type1 == 'alternative' || $type1 == 'mixed' || $type1 == 'related' || $type1=='signed')) {
7277191e 90 if ($message->findDisplayEntity(array(), array('text/html'), true)) {
91 $has_html = true;
92 }
93 }
94 /*
95 * Normal single part message so check its type.
96 */
97 else {
98 if($type0 == 'text' && $type1 == 'html') {
99 $has_html = true;
100 }
101 }
102 if($has_html == true) {
202bcbcc 103 $vars = array('passed_ent_id', 'show_more', 'show_more_cc', 'override_type0', 'override_type1', 'startMessage','where', 'what');
7277191e 104
105 $new_link = $base_uri . 'src/read_body.php?passed_id=' . urlencode($passed_id) .
106 '&amp;passed_ent_id=' . urlencode($passed_ent_id) .
107 '&amp;mailbox=' . urlencode($mailbox);
108 foreach($vars as $var) {
109 if(sqgetGlobalVar($var, $temp)) {
110 $new_link .= '&amp;' . $var . '=' . urlencode($temp);
111 }
112 }
113
114 if($show_html_default == 1) {
115 $new_link .= '&amp;show_html_default=0';
7277191e 116 } else {
117 $new_link .= '&amp;show_html_default=1';
7277191e 118 }
7d020720 119 return $new_link;
7277191e 120 }
121 return '';
122}
123
4669e892 124function ServerMDNSupport($aFlags) {
125 /* escaping $ doesn't work -> \x36 */
c075fcfe 126 return ( in_array('$mdnsent',$aFlags,true) ||
127 in_array('\\*',$aFlags,true) ) ;
57257333 128}
129
40e07136 130function SendMDN ( $mailbox, $passed_id, $message, $imapConnection) {
f08f23b8 131 global $squirrelmail_language, $default_charset, $default_move_to_sent,
132 $languages, $useSendmail, $domain, $sent_folder, $username,
133 $data_dir;
57257333 134
e95c04ec 135 sqgetGlobalVar('SERVER_NAME', $SERVER_NAME, SQ_SERVER);
0b97a708 136
38bca81c 137 $header = $message->rfc822_header;
57257333 138
fc224f68 139 $rfc822_header = new Rfc822Header();
d9c1dccc 140 $content_type = new ContentType('multipart/report');
fc224f68 141 $content_type->properties['report-type']='disposition-notification';
d9c1dccc 142
fc224f68 143 set_my_charset();
144 if ($default_charset) {
d9c1dccc 145 $content_type->properties['charset']=$default_charset;
fc224f68 146 }
147 $rfc822_header->content_type = $content_type;
148 $rfc822_header->to[] = $header->dnt;
2229a3ae 149 $rfc822_header->subject = _("Read:") . ' ' . decodeHeader($header->subject,true,false);
fc224f68 150
40e07136 151 $idents = get_identities();
152 $needles = array();
153 if ($header->to) {
154 foreach ($header->to as $message_to) {
155 $needles[] = $message_to->mailbox.'@'.$message_to->host;
156 }
27a1d10a 157 }
40e07136 158 $identity = find_identity($needles);
159 $from_addr = build_from_header($identity);
160 $reply_to = isset($idents[$identity]['reply_to']) ? $idents[$identity]['reply_to'] : '';
161 // FIXME: this must actually be the envelope address of the orginal message,
162 // but do we have that information? For now the first identity is our best guess.
163 $final_recipient = $idents[0]['email_address'];
fc224f68 164
fc224f68 165 $rfc822_header->from = $rfc822_header->parseAddress($from_addr,true);
166 if ($reply_to) {
167 $rfc822_header->reply_to = $rfc822_header->parseAddress($reply_to,true);
168 }
d9c1dccc 169
57257333 170 // part 1 (RFC2298)
3aaa3214 171 $senton = getLongDateString( $header->date, $header->date_unparsed );
57257333 172 $to_array = $header->to;
173 $to = '';
174 foreach ($to_array as $line) {
af568a82 175 $to .= ' '.$line->getAddress();
57257333 176 }
57257333 177 $now = getLongDateString( time() );
78db1583 178 set_my_charset();
46bb8da8 179 $body = _("Your message") . "\r\n\r\n" .
48027e89 180 "\t" . _("To") . ': ' . decodeHeader($to,false,false) . "\r\n" .
181 "\t" . _("Subject") . ': ' . decodeHeader($header->subject,false,false) . "\r\n" .
182 "\t" . _("Sent") . ': ' . $senton . "\r\n" .
46bb8da8 183 "\r\n" .
184 sprintf( _("Was displayed on %s"), $now );
f69feefe 185
fc224f68 186 $special_encoding = '';
4669e892 187 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
f4bb5d22 188 function_exists($languages[$squirrelmail_language]['XTRA_CODE'] . '_encode')) {
189 $body = call_user_func($languages[$squirrelmail_language]['XTRA_CODE'] . '_encode', $body);
d9c1dccc 190 if (strtolower($default_charset) == 'iso-2022-jp') {
191 if (mb_detect_encoding($body) == 'ASCII') {
192 $special_encoding = '8bit';
193 } else {
194 $body = mb_convert_encoding($body, 'JIS');
195 $special_encoding = '7bit';
196 }
197 }
21461ca4 198 } elseif (sq_is8bit($body)) {
199 $special_encoding = '8bit';
6fbd125b 200 }
fc224f68 201 $part1 = new Message();
202 $part1->setBody($body);
203 $mime_header = new MessageHeader;
204 $mime_header->type0 = 'text';
205 $mime_header->type1 = 'plain';
206 if ($special_encoding) {
207 $mime_header->encoding = $special_encoding;
d9c1dccc 208 } else {
3c21f499 209 $mime_header->encoding = '7bit';
fc224f68 210 }
211 if ($default_charset) {
212 $mime_header->parameters['charset'] = $default_charset;
213 }
214 $part1->mime_header = $mime_header;
215
57257333 216 // part2 (RFC2298)
d9c1dccc 217 $original_recipient = $to;
57257333 218 $original_message_id = $header->message_id;
219
b37e457f 220 $report = "Reporting-UA : $SERVER_NAME ; SquirrelMail (version " . SM_VERSION . ") \r\n";
57257333 221 if ($original_recipient != '') {
fc224f68 222 $report .= "Original-Recipient : $original_recipient\r\n";
57257333 223 }
fc224f68 224 $report .= "Final-Recipient: rfc822; $final_recipient\r\n" .
57257333 225 "Original-Message-ID : $original_message_id\r\n" .
226 "Disposition: manual-action/MDN-sent-manually; displayed\r\n";
227
fc224f68 228 $part2 = new Message();
229 $part2->setBody($report);
230 $mime_header = new MessageHeader;
231 $mime_header->type0 = 'message';
232 $mime_header->type1 = 'disposition-notification';
3c21f499 233 $mime_header->encoding = '7bit';
fc224f68 234 $part2->mime_header = $mime_header;
235
236 $composeMessage = new Message();
237 $composeMessage->rfc822_header = $rfc822_header;
238 $composeMessage->addEntity($part1);
239 $composeMessage->addEntity($part2);
240
241
d9c1dccc 242 if ($useSendmail) {
243 require_once(SM_PATH . 'class/deliver/Deliver_SendMail.class.php');
f3dc9c62 244 global $sendmail_path, $sendmail_args;
245 // Check for outdated configuration
246 if (!isset($sendmail_args)) {
247 if ($sendmail_path=='/var/qmail/bin/qmail-inject') {
248 $sendmail_args = '';
249 } else {
250 $sendmail_args = '-i -t';
251 }
252 }
253 $deliver = new Deliver_SendMail(array('sendmail_args'=>$sendmail_args));
d9c1dccc 254 $stream = $deliver->initStream($composeMessage,$sendmail_path);
fc224f68 255 } else {
d9c1dccc 256 require_once(SM_PATH . 'class/deliver/Deliver_SMTP.class.php');
257 $deliver = new Deliver_SMTP();
783e926e 258 global $smtpServerAddress, $smtpPort, $pop_before_smtp, $pop_before_smtp_host;
d9c1dccc 259 $authPop = (isset($pop_before_smtp) && $pop_before_smtp) ? true : false;
783e926e 260 if (empty($pop_before_smtp_host)) $pop_before_smtp_host = $smtpServerAddress;
9bd3b1e6 261 get_smtp_user($user, $pass);
d9c1dccc 262 $stream = $deliver->initStream($composeMessage,$domain,0,
783e926e 263 $smtpServerAddress, $smtpPort, $user, $pass, $authPop, $pop_before_smtp_host);
d9c1dccc 264 }
265 $success = false;
fc224f68 266 if ($stream) {
f08f23b8 267 $deliver->mail($composeMessage, $stream);
d9c1dccc 268 $success = $deliver->finalizeStream($stream);
fc224f68 269 }
d9c1dccc 270 if (!$success) {
c4d486d8 271 $msg = _("Message not sent.") . "\n" .
6c3d00b5 272 $deliver->dlv_msg;
a15f9d93 273 if (! empty($deliver->dlv_server_msg)) {
14e1d36e 274 $msg.= "\n" .
0cc4fb0d 275 _("Server replied:") . ' ' . $deliver->dlv_ret_nr . ' ' .
3047e291 276 nl2br(sm_encode_html_special_chars($deliver->dlv_server_msg));
a15f9d93 277 }
856e58ef 278 plain_error_message($msg);
fc224f68 279 } else {
280 unset ($deliver);
f08f23b8 281
282 // move to sent folder
283 //
284 $move_to_sent = getPref($data_dir,$username,'move_to_sent');
285 if (isset($default_move_to_sent) && ($default_move_to_sent != 0)) {
286 $svr_allow_sent = true;
287 } else {
288 $svr_allow_sent = false;
289 }
290
291 if (isset($sent_folder) && (($sent_folder != '') || ($sent_folder != 'none'))
292 && sqimap_mailbox_exists( $imapConnection, $sent_folder)) {
293 $fld_sent = true;
294 } else {
295 $fld_sent = false;
296 }
297
298 if ((isset($move_to_sent) && ($move_to_sent != 0)) || (!isset($move_to_sent))) {
299 $lcl_allow_sent = true;
300 } else {
301 $lcl_allow_sent = false;
302 }
303
304 if (($fld_sent && $svr_allow_sent && !$lcl_allow_sent) || ($fld_sent && $lcl_allow_sent)) {
305 $save_reply_with_orig=getPref($data_dir,$username,'save_reply_with_orig');
306 if ($save_reply_with_orig) {
307 $sent_folder = $mailbox;
308 }
d9c1dccc 309 require_once(SM_PATH . 'class/deliver/Deliver_IMAP.class.php');
310 $imap_deliver = new Deliver_IMAP();
899d71a7 311 $imap_deliver->mail($composeMessage, $imapConnection, 0, 0, $imapConnection, $sent_folder);
d9c1dccc 312 unset ($imap_deliver);
313 }
314 }
315 return $success;
57257333 316}
317
6201339c 318function ToggleMDNflag ($set ,$imapConnection, $mailbox, $passed_id) {
d9c1dccc 319 $sg = $set?'+':'-';
320 $cmd = 'STORE ' . $passed_id . ' ' . $sg . 'FLAGS ($MDNSent)';
4669e892 321 $read = sqimap_run_command ($imapConnection, $cmd, true, $response,
6201339c 322 $readmessage, TRUE);
57257333 323}
324
4d0cd98b 325function formatRecipientString($recipients, $item ) {
856e58ef 326 global $show_more, $show_more_cc, $show_more_bcc,
7d020720 327 $PHP_SELF, $oTemplate;
4d0cd98b 328
d9c1dccc 329 $string = '';
38c944cc 330 if ((is_array($recipients)) && (isset($recipients[0]))) {
d9c1dccc 331 $show = false;
38c944cc 332
333 if ($item == 'to') {
d9c1dccc 334 if ($show_more) {
335 $show = true;
336 $url = set_url_var($PHP_SELF, 'show_more',0);
337 } else {
338 $url = set_url_var($PHP_SELF, 'show_more',1);
339 }
340 } else if ($item == 'cc') {
341 if ($show_more_cc) {
342 $show = true;
343 $url = set_url_var($PHP_SELF, 'show_more_cc',0);
344 } else {
345 $url = set_url_var($PHP_SELF, 'show_more_cc',1);
346 }
347 } else if ($item == 'bcc') {
348 if ($show_more_bcc) {
349 $show = true;
350 $url = set_url_var($PHP_SELF, 'show_more_bcc',0);
351 } else {
352 $url = set_url_var($PHP_SELF, 'show_more_bcc',1);
353 }
354 }
67dc67bb 355
7d020720 356 $a = array();
357 foreach ($recipients as $r) {
358 $a[] = array(
bca7d6d2 359 // note: decodeHeader is htmlsafe by default
360 'Name' => decodeHeader($r->getAddress(false)),
3047e291 361 'Email' => sm_encode_html_special_chars($r->getEmail()),
bca7d6d2 362 'Full' => decodeHeader($r->getAddress(true))
7d020720 363 );
1fca12b5 364 }
67dc67bb 365
7d020720 366 $oTemplate->assign('which_field', $item);
367 $oTemplate->assign('recipients', $a);
368 $oTemplate->assign('more_less_toggle_href', $url);
369 $oTemplate->assign('show_more', $show);
67dc67bb 370
7d020720 371 $string = $oTemplate->fetch('read_recipient_list.tpl');
4d0cd98b 372 }
c615b1da 373 return $string;
374}
375
e0e30169 376function formatEnvheader($aMailbox, $passed_id, $passed_ent_id, $message,
af568a82 377 $color, $FirstTimeSee) {
ce68b76b 378 global $default_use_mdn, $default_use_priority,
457e8593 379 $show_xmailer_default, $mdn_user_support, $PHP_SELF,
7d020720 380 $squirrelmail_language, $oTemplate;
38bca81c 381
134e4174 382 $mailbox = $aMailbox['NAME'];
e0e30169 383
d9c1dccc 384 $header = $message->rfc822_header;
385 $env = array();
bdb9ce72 386 $env[_("Subject")] = str_replace("&nbsp;"," ",decodeHeader($header->subject));
7893c8a5 387
d9c1dccc 388 $from_name = $header->getAddr_s('from');
d6b6d221 389 if (!$from_name)
d9c1dccc 390 $from_name = $header->getAddr_s('sender');
d6b6d221 391 if (!$from_name)
392 $env[_("From")] = _("Unknown sender");
393 else
394 $env[_("From")] = decodeHeader($from_name);
3aaa3214 395 $env[_("Date")] = getLongDateString($header->date, $header->date_unparsed);
d9c1dccc 396 $env[_("To")] = formatRecipientString($header->to, "to");
397 $env[_("Cc")] = formatRecipientString($header->cc, "cc");
398 $env[_("Bcc")] = formatRecipientString($header->bcc, "bcc");
399 if ($default_use_priority) {
7d020720 400 $oTemplate->assign('message_priority', $header->priority);
401 $env[_("Priority")] = $oTemplate->fetch('read_message_priority.tpl');
d9c1dccc 402 }
403 if ($show_xmailer_default) {
7d020720 404 $oTemplate->assign('xmailer', decodeHeader($header->xmailer));
405 $env[_("Mailer")] = $oTemplate->fetch('read_xmailer.tpl');
d9c1dccc 406 }
e0d7bbf4 407
408 // this is used for both mdn and also general use for plugins, etc
409 $oTemplate->assign('first_time_reading', $FirstTimeSee);
410
d9c1dccc 411 if ($default_use_mdn) {
412 if ($mdn_user_support) {
413 if ($header->dnt) {
7d020720 414 $mdn_url = $PHP_SELF;
ef3e6c1f 415 $mdn_url = set_url_var($mdn_url, 'mailbox', urlencode($mailbox));
416 $mdn_url = set_url_var($mdn_url, 'passed_id', $passed_id);
417 $mdn_url = set_url_var($mdn_url, 'passed_ent_id', $passed_ent_id);
418 $mdn_url = set_url_var($mdn_url, 'sendreceipt', 1);
7d020720 419
420 $oTemplate->assign('read_receipt_sent', $message->is_mdnsent);
7d020720 421 $oTemplate->assign('send_receipt_href', $mdn_url);
67dc67bb 422
7d020720 423 $env[_("Read Receipt")] = $oTemplate->fetch('read_handle_receipt.tpl');
d9c1dccc 424 }
425 }
426 }
1c3d4412 427
428 $statuses = array();
67dc67bb 429 if (isset($aMailbox['MSG_HEADERS'][$passed_id]['FLAGS'])) {
430 if (isset($aMailbox['MSG_HEADERS'][$passed_id]['FLAGS']['\\deleted']) &&
431 $aMailbox['MSG_HEADERS'][$passed_id]['FLAGS']['\\deleted'] === true) {
432 $statuses[] = _("deleted");
433 }
434 if (isset($aMailbox['MSG_HEADERS'][$passed_id]['FLAGS']['\\answered']) &&
435 $aMailbox['MSG_HEADERS'][$passed_id]['FLAGS']['\\answered'] === true) {
436 $statuses[] = _("answered");
437 }
438 if (isset($aMailbox['MSG_HEADERS'][$passed_id]['FLAGS']['\\draft']) &&
439 $aMailbox['MSG_HEADERS'][$passed_id]['FLAGS']['\\draft'] === true) {
440 $statuses[] = _("draft");
441 }
442 if (isset($aMailbox['MSG_HEADERS'][$passed_id]['FLAGS']['\\flagged']) &&
443 $aMailbox['MSG_HEADERS'][$passed_id]['FLAGS']['\\flagged'] === true) {
444 $statuses[] = _("flagged");
445 }
446 if ( count($statuses) ) {
447 $env[_("Status")] = implode(', ', $statuses);
448 }
1c3d4412 449 }
67dc67bb 450
7d020720 451 $env[_("Options")] = formatToolbar($mailbox, $passed_id, $passed_ent_id, $message, $color);
c615b1da 452
1c3d4412 453
7d020720 454 $oTemplate->assign('headers_to_display', $env);
67dc67bb 455
7d020720 456 $oTemplate->display('read_headers.tpl');
d9c1dccc 457}
c615b1da 458
1e150c97 459/**
4669e892 460 * Format message toolbar
461 *
726f0cd4 462 * @param array $aMailbox Current mailbox information array
463 * @param int $passed_id UID of current message
464 * @param int $passed_ent_id Id of entity within message
465 * @param object $message Current message object
466 * @param void $removedVar This parameter is no longer used, but remains
467 * so as not to break this function's prototype
468 * (OPTIONAL)
469 * @param boolean $nav_on_top When TRUE, the menubar is being constructed
470 * for use at the top of the page, otherwise it
471 * will be used for page bottom (OPTIONAL;
472 * default = TRUE)
1e150c97 473 */
726f0cd4 474function formatMenubar($aMailbox, $passed_id, $passed_ent_id, $message,
475 $removedVar=FALSE, $nav_on_top=TRUE) {
476
7d020720 477 global $base_uri, $draft_folder, $where, $what, $sort,
4669e892 478 $startMessage, $PHP_SELF, $save_as_draft,
1e150c97 479 $enable_forward_as_attachment, $imapConnection, $lastTargetMailbox,
7d020720 480 $delete_prev_next_display, $show_copy_buttons,
457e8593 481 $compose_new_win, $compose_width, $compose_height,
7d020720 482 $oTemplate;
c615b1da 483
e0e30169 484 //FIXME cleanup argument list, use $aMailbox where possible
485 $mailbox = $aMailbox['NAME'];
486
d9c1dccc 487 $urlMailbox = urlencode($mailbox);
c615b1da 488
1e150c97 489 // Create Prev & Next links
490 // Handle nested entities first (i.e. Mime Attach parts)
7d020720 491 $prev_href = $next_href = $up_href = $del_href = $del_prev_href = $del_next_href = '';
67dc67bb 492 $msg_list_href = $search_href = $view_msg_href = '';
1e150c97 493 if (isset($passed_ent_id) && $passed_ent_id) {
494 // code for navigating through attached message/rfc822 messages
d9c1dccc 495 $url = set_url_var($PHP_SELF, 'passed_ent_id',0);
70bdc740 496 $entities = array();
497 $entity_count = array();
498 $c = 0;
f2f03410 499
70bdc740 500 foreach($message->parent->entities as $ent) {
9f42bfc8 501 if ($ent->type0 == 'message' && $ent->type1 == 'rfc822') {
67dc67bb 502
9f42bfc8 503 $c++;
504 $entity_count[$c] = $ent->entity_id;
505 $entities[$ent->entity_id] = $c;
506 }
70bdc740 507 }
1e150c97 508
91c27aee 509 if(isset($entities[$passed_ent_id]) && $entities[$passed_ent_id] > 1) {
70bdc740 510 $prev_ent_id = $entity_count[$entities[$passed_ent_id] - 1];
7d020720 511 $prev_href = set_url_var($PHP_SELF, 'passed_ent_id', $prev_ent_id);
70bdc740 512 }
1e150c97 513
91c27aee 514 if(isset($entities[$passed_ent_id]) && $entities[$passed_ent_id] < $c) {
70bdc740 515 $next_ent_id = $entity_count[$entities[$passed_ent_id] + 1];
7d020720 516 $next_href = set_url_var($PHP_SELF, 'passed_ent_id', $next_ent_id);
70bdc740 517 }
1e150c97 518
d9c1dccc 519 $par_ent_id = $message->parent->entity_id;
520 if ($par_ent_id) {
521 $par_ent_id = substr($par_ent_id,0,-2);
1e150c97 522 if ( $par_ent_id != 0 ) {
7d020720 523 $up_href = set_url_var($PHP_SELF, 'passed_ent_id',$par_ent_id);
1e150c97 524 }
525 }
526
7d020720 527 $view_msg_href = $url;
1e150c97 528
529 // Prev/Next links for regular messages
324ac3c5 530 } else if ( true ) { //!(isset($where) && isset($what)) ) {
324ac3c5 531 $prev = findPreviousMessage($aMailbox['UIDSET'][$what], $passed_id);
532 $next = findNextMessage($aMailbox['UIDSET'][$what],$passed_id);
1e150c97 533
1e150c97 534 if ($prev >= 0) {
7d020720 535 $prev_href = $base_uri . 'src/read_body.php?passed_id='.$prev.
1e150c97 536 '&amp;mailbox='.$urlMailbox.'&amp;sort='.$sort.
324ac3c5 537 "&amp;where=$where&amp;what=$what" .
1e150c97 538 '&amp;startMessage='.$startMessage.'&amp;show_more=0';
d9c1dccc 539 }
1e150c97 540
1e150c97 541 if ($next >= 0) {
7d020720 542 $next_href = $base_uri . 'src/read_body.php?passed_id='.$next.
1e150c97 543 '&amp;mailbox='.$urlMailbox.'&amp;sort='.$sort.
324ac3c5 544 "&amp;where=$where&amp;what=$what" .
1e150c97 545 '&amp;startMessage='.$startMessage.'&amp;show_more=0';
1e150c97 546 }
547
1e150c97 548 // Only bother with Delete & Prev and Delete & Next IF
6201339c 549 // top display is enabled.
4669e892 550 if ( $delete_prev_next_display == 1 &&
324ac3c5 551 in_array('\\deleted', $aMailbox['PERMANENTFLAGS'],true) ) {
1e150c97 552 if ($prev >= 0) {
7d020720 553 $del_prev_href = $base_uri . 'src/read_body.php?passed_id='.$prev.
1e150c97 554 '&amp;mailbox='.$urlMailbox.'&amp;sort='.$sort.
555 '&amp;startMessage='.$startMessage.'&amp;show_more=0'.
324ac3c5 556 "&amp;where=$where&amp;what=$what" .
5f2c00dd 557 '&amp;delete_id='.$passed_id .
558 '&amp;smtoken='.sm_generate_security_token();
1e150c97 559 }
560
1e150c97 561 if ($next >= 0) {
7d020720 562 $del_next_href = $base_uri . 'src/read_body.php?passed_id='.$next.
1e150c97 563 '&amp;mailbox='.$urlMailbox.'&amp;sort='.$sort.
564 '&amp;startMessage='.$startMessage.'&amp;show_more=0'.
324ac3c5 565 "&amp;where=$where&amp;what=$what" .
5f2c00dd 566 '&amp;delete_id='.$passed_id .
567 '&amp;smtoken='.sm_generate_security_token();
1e150c97 568 }
1e150c97 569 }
570 }
571
c4dcda23 572 $msg_list_href = get_message_list_uri($aMailbox['NAME'], $startMessage, $what);
573 if ($where == 'search.php')
574 $search_href = str_replace('read_body.php', 'search.php', $msg_list_href);
575 else
576 $search_href = '';
1e150c97 577
98a9cc03 578 $comp_uri = $base_uri.'src/compose.php' .
579 '?passed_id=' . $passed_id .
580 '&amp;mailbox=' . $urlMailbox .
581 '&amp;startMessage=' . $startMessage .
582 (isset($passed_ent_id) ? '&amp;passed_ent_id='.$passed_ent_id : '');
4669e892 583
584 // Start form for reply/reply all/forward..
1a531551 585 $target = '';
586 $on_click='';
89a067ff 587 $method='post';
6190378c 588 $onsubmit='';
1a531551 589 if ($compose_new_win == '1') {
91c27aee 590 if (!preg_match("/^[0-9]{3,4}$/", $compose_width)) {
591 $compose_width = '640';
592 }
593 if (!preg_match("/^[0-9]{3,4}$/", $compose_height)) {
594 $compose_height = '550';
595 }
457e8593 596 if ( checkForJavascript() ) {
0be2024f 597 $on_click='comp_in_new_form(\''.$comp_uri.'\', this, this.form,'. $compose_width .',' . $compose_height .')';
1a531551 598 $comp_uri = 'javascript:void(0)';
89a067ff 599 $method='get';
600 $onsubmit = 'return false';
1a531551 601 } else {
89a067ff 602 $target = '_blank';
1a531551 603 }
604 }
605
7d020720 606 $oTemplate->assign('nav_on_top', $nav_on_top);
98a9cc03 607
7d020720 608 $oTemplate->assign('prev_href', $prev_href);
609 $oTemplate->assign('up_href', $up_href);
610 $oTemplate->assign('next_href', $next_href);
611 $oTemplate->assign('del_prev_href', $del_prev_href);
612 $oTemplate->assign('del_next_href', $del_next_href);
613 $oTemplate->assign('view_msg_href', $view_msg_href);
614
615 $oTemplate->assign('message_list_href', $msg_list_href);
616 $oTemplate->assign('search_href', $search_href);
617
89a067ff 618 $oTemplate->assign('form_extra', '');
619 $oTemplate->assign('form_method', $method);
620 $oTemplate->assign('form_target', $target);
621 $oTemplate->assign('form_onsubmit', $onsubmit);
7d020720 622 $oTemplate->assign('compose_href', $comp_uri);
623 $oTemplate->assign('button_onclick', $on_click);
624 $oTemplate->assign('forward_as_attachment_enabled', $enable_forward_as_attachment==1);
67dc67bb 625
d08a5945 626 //FIXME: I am surprised these aren't already given to the template; probably needs to be given at a higher level, so I have NO IDEA if this is the right place to do this... adding them so template can construct its own API calls... we can build those herein too if preferrable
627 $oTemplate->assign('mailbox', $aMailbox['NAME']);
628 $oTemplate->assign('passed_id', $passed_id);
629 $oTemplate->assign('what', $what);
630
1e150c97 631 // If Draft folder - create Resume link
67dc67bb 632 $resume_draft = $edit_as_new = false;
1f78253f 633 if (isDraftMailbox($mailbox) && ($save_as_draft)) {
71911a21 634 $resume_draft = true;
1e150c97 635 } else if (handleAsSent($mailbox)) {
7d020720 636 $edit_as_new = true;
1e150c97 637 }
7d020720 638 $oTemplate->assign('can_resume_draft', $resume_draft);
67dc67bb 639 $oTemplate->assign('can_edit_as_new', $edit_as_new);
640
7d020720 641 $oTemplate->assign('mailboxes', sqimap_mailbox_option_array($imapConnection));
642 if (in_array('\\deleted', $aMailbox['PERMANENTFLAGS'],true)) {
324ac3c5 643 $delete_url = $base_uri . "src/$where";
7d020720 644 $oTemplate->assign('can_be_deleted', true);
645 $oTemplate->assign('move_delete_form_action', $base_uri.'src/'.$where);
646 $oTemplate->assign('delete_form_extra', addHidden('mailbox', $aMailbox['NAME'])."\n" .
647 addHidden('msg[0]', $passed_id)."\n" .
648 addHidden('startMessage', $startMessage)."\n" );
4669e892 649 if (!(isset($passed_ent_id) && $passed_ent_id)) {
7d020720 650 $oTemplate->assign('can_be_moved', true);
651 $oTemplate->assign('move_form_extra', addHidden('mailbox', $aMailbox['NAME'])."\n" .
652 addHidden('msg[0]', $passed_id)."\n" );
653 $oTemplate->assign('last_move_target', isset($lastTargetMailbox) && !empty($lastTargetMailbox) ? $lastTargetMailbox : '');
654 $oTemplate->assign('can_be_copied', $show_copy_buttons==1);
1e150c97 655 } else {
7d020720 656 $oTemplate->assign('can_be_moved', false);
657 $oTemplate->assign('move_form_extra', '');
658 $oTemplate->assign('last_move_target', '');
659 $oTemplate->assign('can_be_copied', false);
988e24f6 660 }
7d020720 661 } else {
662 $oTemplate->assign('can_be_deleted', false);
663 $oTemplate->assign('move_delete_form_action', '');
664 $oTemplate->assign('delete_form_extra', '');
665 $oTemplate->assign('can_be_moved', false);
666 $oTemplate->assign('move_form_extra', '');
667 $oTemplate->assign('last_move_target', '');
668 $oTemplate->assign('can_be_copied', false);
669 }
67dc67bb 670
74540ffc 671 // access keys... only add to the top menubar, because adding
726f0cd4 672 // them twice makes them less functional (press access key, *then*
74540ffc 673 // press <enter> to make it work)
726f0cd4 674 //
74540ffc 675 if ($nav_on_top) {
726f0cd4 676 global $accesskey_read_msg_reply, $accesskey_read_msg_reply_all,
677 $accesskey_read_msg_forward, $accesskey_read_msg_as_attach,
678 $accesskey_read_msg_delete, $accesskey_read_msg_bypass_trash,
28cdccf6 679 $accesskey_read_msg_move, $accesskey_read_msg_move_to,
680 $accesskey_read_msg_copy;
726f0cd4 681 } else {
682 $accesskey_read_msg_reply = $accesskey_read_msg_reply_all =
683 $accesskey_read_msg_forward = $accesskey_read_msg_as_attach =
684 $accesskey_read_msg_delete = $accesskey_read_msg_bypass_trash =
28cdccf6 685 $accesskey_read_msg_move = $accesskey_read_msg_move_to =
686 $accesskey_read_msg_copy = 'NONE';
726f0cd4 687 }
8949acd6 688 $oTemplate->assign('accesskey_read_msg_reply', $accesskey_read_msg_reply);
689 $oTemplate->assign('accesskey_read_msg_reply_all', $accesskey_read_msg_reply_all);
690 $oTemplate->assign('accesskey_read_msg_forward', $accesskey_read_msg_forward);
691 $oTemplate->assign('accesskey_read_msg_as_attach', $accesskey_read_msg_as_attach);
692 $oTemplate->assign('accesskey_read_msg_delete', $accesskey_read_msg_delete);
693 $oTemplate->assign('accesskey_read_msg_bypass_trash', $accesskey_read_msg_bypass_trash);
694 $oTemplate->assign('accesskey_read_msg_move_to', $accesskey_read_msg_move_to);
695 $oTemplate->assign('accesskey_read_msg_move', $accesskey_read_msg_move);
28cdccf6 696 $oTemplate->assign('accesskey_read_msg_copy', $accesskey_read_msg_copy);
8949acd6 697
2d97bb26 698 global $null;
699 do_hook('read_body_menu', $null);
700
7d020720 701 if ($nav_on_top) {
702 $oTemplate->display('read_menubar_nav.tpl');
703 $oTemplate->display('read_menubar_buttons.tpl');
704 } else {
705 $oTemplate->display('read_menubar_buttons.tpl');
706 $oTemplate->display('read_menubar_nav.tpl');
764971df 707 }
67dc67bb 708
c615b1da 709}
710
711function formatToolbar($mailbox, $passed_id, $passed_ent_id, $message, $color) {
7d020720 712 global $base_uri, $where, $what, $show_html_default,
a6519f05 713 $oTemplate, $download_href, $PHP_SELF,
7d020720 714 $unsafe_image_toggle_href, $unsafe_image_toggle_text;
4669e892 715
d9c1dccc 716 $urlMailbox = urlencode($mailbox);
78909469 717 $urlPassed_id = urlencode($passed_id);
718 $urlPassed_ent_id = urlencode($passed_ent_id);
4669e892 719
78909469 720 $query_string = 'mailbox=' . $urlMailbox . '&amp;passed_id=' . $urlPassed_id . '&amp;passed_ent_id=' . $urlPassed_ent_id;
78909469 721 if (!empty($where)) {
722 $query_string .= '&amp;where=' . urlencode($where);
723 }
78909469 724 if (!empty($what)) {
725 $query_string .= '&amp;what=' . urlencode($what);
726 }
e95c04ec 727 $url = $base_uri.'src/view_header.php?'.$query_string;
d9c1dccc 728
7d020720 729 $links = array();
730 $links[] = array (
731 'URL' => $url,
732 'Text' => _("View Full Header")
733 );
a5e4a8fc 734
735 if ( checkForJavaScript() ) {
736 $links[] = array (
737 'URL' => 'javascript:printThis();',
738 'Text' => _("Print"),
739 );
740 } else {
741 $links[] = array (
742 'URL' => set_url_var($PHP_SELF, 'print', '1'),
a6519f05 743 'Text' => _("Print"),
744 'Target' => '_blank'
7d020720 745 );
a5e4a8fc 746 }
747
7d020720 748 $links[] = array (
749 'URL' => $download_href,
210b5bb5 750 'Text' => _("Download this as a file")
7d020720 751 );
752 $toggle = html_toggle_href($mailbox, $passed_id, $passed_ent_id, $message);
753 if (!empty($toggle)) {
754 $links[] = array (
755 'URL' => $toggle,
756 'Text' => $show_html_default==1 ? _("View as plain text") : _("View as HTML")
757 );
758 }
759 if (!empty($unsafe_image_toggle_href)) {
760 $links[] = array (
761 'URL' => $unsafe_image_toggle_href,
762 'Text' => $unsafe_image_toggle_text
763 );
764 }
765
766 do_hook('read_body_header_right', $links);
767
768 $oTemplate->assign('links', $links);
67dc67bb 769
7d020720 770 return $oTemplate->fetch('read_toolbar.tpl');
91c27aee 771}
772
6206f6c4 773/***************************/
2ffa3f57 774/* Main of read_body.php */
6206f6c4 775/***************************/
57257333 776
0b97a708 777/* get the globals we may need */
778
e95c04ec 779sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION);
e95c04ec 780sqgetGlobalVar('lastTargetMailbox', $lastTargetMailbox, SQ_SESSION);
e95c04ec 781if (!sqgetGlobalVar('messages', $messages, SQ_SESSION) ) {
782 $messages = array();
ce274df9 783}
81de00c0 784sqgetGlobalVar('delayed_errors', $delayed_errors, SQ_SESSION);
785if (is_array($delayed_errors)) {
786 $oErrorHandler->AssignDelayedErrors($delayed_errors);
787 sqsession_unregister("delayed_errors");
788}
e95c04ec 789/** GET VARS */
790sqgetGlobalVar('sendreceipt', $sendreceipt, SQ_GET);
324ac3c5 791if (!sqgetGlobalVar('where', $where, SQ_GET) ) {
792 $where = 'right_main.php';
793}
d0b119a5 794/*
795 * Used as entry key to the list of uid's cached in the mailbox cache
796 * we use the cached uid's to get the next and prev message.
797 */
324ac3c5 798if (!sqgetGlobalVar('what', $what, SQ_GET) ){
799 $what = 0;
800}
e95c04ec 801if ( sqgetGlobalVar('show_more', $temp, SQ_GET) ) {
802 $show_more = (int) $temp;
1b9f3c04 803}
e95c04ec 804if ( sqgetGlobalVar('show_more_cc', $temp, SQ_GET) ) {
805 $show_more_cc = (int) $temp;
0b97a708 806}
e95c04ec 807if ( sqgetGlobalVar('show_more_bcc', $temp, SQ_GET) ) {
808 $show_more_bcc = (int) $temp;
0b97a708 809}
e95c04ec 810if ( sqgetGlobalVar('view_hdr', $temp, SQ_GET) ) {
811 $view_hdr = (int) $temp;
0b97a708 812}
e95c04ec 813
91c27aee 814if ( sqgetGlobalVar('account', $temp, SQ_GET) ) {
815 $iAccount = (int) $temp;
816} else {
817 $iAccount = 0;
818}
819
e95c04ec 820/** GET/POST VARS */
51bbe8fa 821sqgetGlobalVar('passed_id', $passed_id, SQ_INORDER, NULL, SQ_TYPE_BIGINT);
e95c04ec 822sqgetGlobalVar('passed_ent_id', $passed_ent_id);
823sqgetGlobalVar('mailbox', $mailbox);
824
e95c04ec 825if ( sqgetGlobalVar('sort', $temp) ) {
826 $sort = (int) $temp;
0b97a708 827}
e95c04ec 828if ( sqgetGlobalVar('startMessage', $temp) ) {
829 $startMessage = (int) $temp;
324ac3c5 830} else {
831 $startMessage = 1;
ce274df9 832}
7277191e 833if(sqgetGlobalVar('show_html_default', $temp)) {
834 $show_html_default = (int) $temp;
835}
836
837if(sqgetGlobalVar('view_unsafe_images', $temp)) {
838 $view_unsafe_images = (int) $temp;
839 if($view_unsafe_images == 1) {
840 $show_html_default = 1;
841 }
842} else {
843 $view_unsafe_images = 0;
844}
d31f73f1 845
324ac3c5 846/**
847 * Retrieve mailbox cache
848 */
849sqgetGlobalVar('mailbox_cache',$mailbox_cache,SQ_SESSION);
0b97a708 850
ce274df9 851/* end of get globals */
38c944cc 852
906f7e9f 853$imapConnection = sqimap_login($username, false, $imapServerAddress, $imapPort, 0);
91c27aee 854$aMailbox = sqm_api_mailbox_select($imapConnection, $iAccount, $mailbox,array('setindex' => $what, 'offset' => $startMessage),array());
855
c3731db5 856
91c27aee 857/**
c3731db5 858 Start code to set the columns to fetch in case of hitting the next/prev link
859 The reason for this is the fact that the cache can be invalidated which means that the headers
860 to fetch aren't there anymore. Before they got calculated when the messagelist was shown.
861
862 Todo, better central handling of setting the mailbox options so we do not need to do the stuff below
863*/
864
865/**
866 * Replace From => To in case it concerns a draft or sent folder
867 */
199ff86a 868$aColumns = array();
c3731db5 869if (($mailbox == $sent_folder || $mailbox == $draft_folder) &&
870 !in_array(SQM_COL_TO,$index_order)) {
871 $aNewOrder = array(); // nice var name ;)
872 foreach($index_order as $iCol) {
873 if ($iCol == SQM_COL_FROM) {
874 $iCol = SQM_COL_TO;
875 }
199ff86a 876 $aColumns[$iCol] = array();
c3731db5 877 }
c3731db5 878} else {
199ff86a 879 foreach ($index_order as $iCol) {
880 $aColumns[$iCol] = array();
881 }
c3731db5 882}
883
884$aProps = array(
885 'columns' => $aColumns, // columns bound settings
886 'config' => array(
887 'highlight_list' => $message_highlight_list, // row highlighting rules
888 'trash_folder' => $trash_folder,
889 'sent_folder' => $sent_folder,
890 'draft_folder' => $draft_folder));
891
892calcFetchColumns($aMailbox,$aProps);
893
894/**
895 End code to set the columns to fetch in case of hitting the next/prev link
896*/
897
898
899
900/**
901 * Check if cache is still valid, $what contains the key
902 * which gives us acces to the array with uid's. At this moment
903 * 0 is used for a normal message list and search uses 1 as key. This can be
904 * changed / extended in the future.
905 * If on a select of a mailbox we detect that the cache should be invalidated due to
906 * the delete of messages or due to new messages we empty the list with uid's and
907 * that's what we detect below.
908 */
91c27aee 909if (!is_array($aMailbox['UIDSET'][$what])) {
d0b119a5 910 fetchMessageHeaders($imapConnection, $aMailbox);
91c27aee 911}
38c944cc 912
d0b119a5 913$iSetIndex = $aMailbox['SETINDEX'];
914$aMailbox['CURRENT_MSG'][$iSetIndex] = $passed_id;
915
324ac3c5 916/**
917 * Update the seen state
918 * and ignore in_array('\\seen',$aMailbox['PERMANENTFLAGS'],true)
919 */
920if (isset($aMailbox['MSG_HEADERS'][$passed_id]['FLAGS'])) {
921 $aMailbox['MSG_HEADERS'][$passed_id]['FLAGS']['\\seen'] = true;
e0e30169 922}
e0e30169 923
1e150c97 924/**
925 * Process Delete from delete-move-next
926 * but only if delete_id was set
927 */
928if ( sqgetGlobalVar('delete_id', $delete_id, SQ_GET) ) {
324ac3c5 929 handleMessageListForm($imapConnection,$aMailbox,$sButton='setDeleted', array($delete_id));
1e150c97 930}
931
38c944cc 932/**
933 * $message contains all information about the message
934 * including header and body
935 */
37d2a6ee 936
324ac3c5 937if (isset($aMailbox['MSG_HEADERS'][$passed_id]['MESSAGE_OBJECT'])) {
938 $message = $aMailbox['MSG_HEADERS'][$passed_id]['MESSAGE_OBJECT'];
939 $FirstTimeSee = !$message->is_seen;
38c944cc 940} else {
324ac3c5 941 $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
942 $FirstTimeSee = !$message->is_seen;
5200c026 943}
bdfa0f9a 944
945/**
946 * update message seen status and put in cache
947 */
948$message->is_seen = true;
949$aMailbox['MSG_HEADERS'][$passed_id]['MESSAGE_OBJECT'] = $message;
950
dd628162 951if (isset($passed_ent_id) && $passed_ent_id) {
324ac3c5 952 $message = $message->getEntity($passed_ent_id);
953 if ($message->type0 != 'message' && $message->type1 != 'rfc822') {
954 $message = $message->parent;
955 }
956 $read = sqimap_run_command ($imapConnection, "FETCH $passed_id BODY[$passed_ent_id.HEADER]", true, $response, $msg, TRUE);
957 $rfc822_header = new Rfc822Header();
958 $rfc822_header->parseHeader($read);
959 $message->rfc822_header = $rfc822_header;
91c27aee 960} else if ($message->type0 == 'message' && $message->type1 == 'rfc822' && isset($message->entities[0])) {
961 $read = sqimap_run_command ($imapConnection, "FETCH $passed_id BODY[1.HEADER]", true, $response, $msg, TRUE);
962 $rfc822_header = new Rfc822Header();
963 $rfc822_header->parseHeader($read);
964 $message->rfc822_header = $rfc822_header;
c615b1da 965} else {
324ac3c5 966 $passed_ent_id = 0;
38c944cc 967}
5200c026 968$header = $message->header;
57257333 969
a798d8b2 970// gmail does not mark messages as read when retrieving the message body
971// even though RFC 3501, section 6.4.5 (FETCH Command) says:
972// "The \Seen flag is implicitly set; if this causes the flags to change,
973// they SHOULD be included as part of the FETCH responses."
974//
975if ($imap_server_type == 'gmail') {
976 sqimap_toggle_flag($imapConnection, $passed_id, '\\Seen', true, true);
977}
57257333 978
6206f6c4 979/****************************************/
980/* Block for handling incoming url vars */
981/****************************************/
5200c026 982
5200c026 983if (isset($sendreceipt)) {
984 if ( !$message->is_mdnsent ) {
324ac3c5 985 $supportMDN = ServerMDNSupport($aMailbox["PERMANENTFLAGS"]);
40e07136 986 if ( SendMDN( $mailbox, $passed_id, $message, $imapConnection ) > 0 && $supportMDN ) {
6201339c 987 ToggleMDNflag( true, $imapConnection, $mailbox, $passed_id);
5200c026 988 $message->is_mdnsent = true;
1012f961 989 $aMailbox['MSG_HEADERS'][$passed_id]['MESSAGE_OBJECT'] = $message;
5200c026 990 }
5200c026 991 }
992}
6206f6c4 993/***********************************************/
994/* End of block for handling incoming url vars */
995/***********************************************/
996
58ca5611 997$oTemplate->assign('aAttribs', array('class' => 'entity_sep'));
998$hr = $oTemplate->fetch('horizontal_rule.tpl');
9f42bfc8 999$messagebody = '';
6e515418 1000do_hook('read_body_top', $null);
c4ad259b 1001if ($show_html_default == 1) {
1002 $ent_ar = $message->findDisplayEntity(array());
1003} else {
1004 $ent_ar = $message->findDisplayEntity(array(), array('text/plain'));
1005}
a128c967 1006$cnt = count($ent_ar);
1007for ($i = 0; $i < $cnt; $i++) {
6a108031 1008 $messagebody .= formatBody($imapConnection, $message, $color, $wrap_at, $ent_ar[$i], $passed_id, $mailbox);
a128c967 1009 if ($i != $cnt-1) {
58ca5611 1010 $messagebody .= $hr;
a128c967 1011 }
38c944cc 1012}
e55c441a 1013
202bcbcc 1014/**
1015 * Write mailbox with updated seen flag information back to cache.
1016 */
1017$mailbox_cache[$iAccount.'_'.$aMailbox['NAME']] = $aMailbox;
1018sqsession_register($mailbox_cache,'mailbox_cache');
1019$_SESSION['mailbox_cache'] = $mailbox_cache;
202bcbcc 1020
c4dcda23 1021// message list URI is used in page header when on read_body
1022$oTemplate->assign('message_list_href', get_message_list_uri($aMailbox['NAME'], $startMessage, $what));
1023
b89ceca6 1024displayPageHeader($color, $mailbox,'','');
a6519f05 1025
1026/* this is the non-javascript version of printer friendly */
1027if ( sqgetGlobalVar('print', $print, SQ_GET) ) {
1028 $oTemplate->display('read_message_print.tpl');
1029} else {
1030 formatMenubar($aMailbox, $passed_id, $passed_ent_id, $message,false);
1031}
e0e30169 1032formatEnvheader($aMailbox, $passed_id, $passed_ent_id, $message, $color, $FirstTimeSee);
7d020720 1033
1034$oTemplate->assign('message_body', $messagebody);
1035$oTemplate->display('read_message_body.tpl');
1036
1037formatAttachments($message,$ent_ar,$mailbox, $passed_id);
a07cd1a4 1038
1039/* show attached images inline -- if pref'fed so */
7d020720 1040if ($attachment_common_show_images && is_array($attachment_common_show_images_list)) {
1041 $images = array();
a07cd1a4 1042 foreach ($attachment_common_show_images_list as $img) {
ce274df9 1043 $imgurl = SM_PATH . 'src/download.php' .
57257333 1044 '?' .
cd7b8833 1045 'passed_id=' . urlencode($img['passed_id']) .
3d570ba0 1046 '&amp;mailbox=' . urlencode($mailbox) .
ff9d4297 1047 '&amp;ent_id=' . urlencode($img['ent_id']) .
3d570ba0 1048 '&amp;absolute_dl=true';
7d020720 1049 $a = array();
1050 $a['Name'] = $img['name'];
1051 $a['DisplayURL'] = $imgurl;
1052 $a['DownloadURL'] = $img['download_href'];
1053 $images[] = $a;
10f0ce72 1054 }
67dc67bb 1055
7d020720 1056 $oTemplate->assign('images', $images);
1057 $oTemplate->display('read_display_images_inline.tpl');
a07cd1a4 1058}
1059
9ad07d9a 1060formatMenubar($aMailbox, $passed_id, $passed_ent_id, $message, false, FALSE);
1e150c97 1061
6e515418 1062do_hook('read_body_bottom', $null);
a07cd1a4 1063sqimap_logout($imapConnection);
51d66ea2 1064$oTemplate->display('footer.tpl');