fix for bug #596781
[squirrelmail.git] / src / read_body.php
CommitLineData
59177427 1<?php
895905c0 2
35586184 3/**
4 * read_body.php
5 *
15e6162e 6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
35586184 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This file is used for reading the msgs array and displaying
10 * the resulting emails in the right frame.
11 *
12 * $Id$
a07cd1a4 13 */
35586184 14
15require_once('../src/validate.php');
16require_once('../functions/imap.php');
17require_once('../functions/mime.php');
18require_once('../functions/date.php');
19require_once('../functions/url_parser.php');
57257333 20require_once('../functions/smtp.php');
fab3baa6 21require_once('../functions/html.php');
38c944cc 22
a07cd1a4 23/**
1fca12b5 24 * Given an IMAP message id number, this will look it up in the cached
25 * and sorted msgs array and return the index. Used for finding the next
26 * and previous messages.
27 *
28 * @return the index of the next valid message from the array
29 */
c615b1da 30function findNextMessage($passed_id) {
31 global $msort, $msgs, $sort,
cf710efe 32 $thread_sort_messages, $allow_server_sort,
60a3e687 33 $server_sort_array;
2728fa19 34 if (!is_array($server_sort_array)) {
35 $thread_sort_messages = 0;
794d59c0 36 $allow_server_sort = FALSE;
2728fa19 37 }
a07cd1a4 38 $result = -1;
c615b1da 39 if ($thread_sort_messages || $allow_server_sort) {
60a3e687 40 reset($server_sort_array);
41 while(list($key, $value) = each ($server_sort_array)) {
c615b1da 42 if ($passed_id == $value) {
1fca12b5 43 if ($key == (count($server_sort_array) - 1)) {
60a3e687 44 $result = -1;
45 break;
46 }
1fca12b5 47 $result = $server_sort_array[$key + 1];
60a3e687 48 break;
789b4d79 49 }
60a3e687 50 }
1fca12b5 51 }
c615b1da 52 elseif ($sort == 6 && !$allow_server_sort &&
53 !$thread_sort_messages ) {
54 if ($passed_id != 1) {
55 $result = $passed_id - 1;
a07cd1a4 56 }
1fca12b5 57 }
c615b1da 58 elseif (!$allow_server_sort && !$thread_sort_messages ) {
75ef78d8 59 if (!is_array($msort)) {
60 return -1;
61 }
a07cd1a4 62 for (reset($msort); ($key = key($msort)), (isset($key)); next($msort)) {
c615b1da 63 if ($passed_id == $msgs[$key]['ID']) {
a07cd1a4 64 next($msort);
65 $key = key($msort);
1fca12b5 66 if (isset($key)){
a07cd1a4 67 $result = $msgs[$key]['ID'];
68 break;
1fca12b5 69 }
10f0ce72 70 }
71 }
10f0ce72 72 }
a07cd1a4 73 return ($result);
74}
75
a07cd1a4 76/** returns the index of the previous message from the array. */
c615b1da 77function findPreviousMessage($numMessages, $passed_id) {
78 global $msort, $sort, $msgs,
79 $thread_sort_messages,
60a3e687 80 $allow_server_sort, $server_sort_array;
a07cd1a4 81 $result = -1;
2728fa19 82 if (!is_array($server_sort_array)) {
83 $thread_sort_messages = 0;
794d59c0 84 $allow_server_sort = FALSE;
2728fa19 85 }
c615b1da 86 if ($thread_sort_messages || $allow_server_sort ) {
60a3e687 87 reset($server_sort_array);
88 while(list($key, $value) = each ($server_sort_array)) {
c615b1da 89 if ($passed_id == $value) {
60a3e687 90 if ($key == 0) {
91 $result = -1;
92 break;
93 }
94 $result = $server_sort_array[$key -1];
95 break;
789b4d79 96 }
60a3e687 97 }
789b4d79 98 }
c615b1da 99 elseif ($sort == 6 && !$allow_server_sort &&
100 !$thread_sort_messages) {
101 if ($passed_id != $numMessages) {
102 $result = $passed_id + 1;
a07cd1a4 103 }
60a3e687 104 }
c615b1da 105 elseif (!$thread_sort_messages && !$allow_server_sort) {
1fca12b5 106 if (!is_array($msort)) {
75ef78d8 107 return -1;
1fca12b5 108 }
a07cd1a4 109 for (reset($msort); ($key = key($msort)), (isset($key)); next($msort)) {
c615b1da 110 if ($passed_id == $msgs[$key]['ID']) {
a07cd1a4 111 prev($msort);
112 $key = key($msort);
113 if (isset($key)) {
c615b1da 114 echo $msort[$key];
a07cd1a4 115 $result = $msgs[$key]['ID'];
116 break;
10f0ce72 117 }
118 }
10f0ce72 119 }
a07cd1a4 120 }
121 return ($result);
122}
10f0ce72 123
a07cd1a4 124/**
1fca12b5 125 * Displays a link to a page where the message is displayed more
126 * "printer friendly".
127 */
c615b1da 128function printer_friendly_link($mailbox, $passed_id, $passed_ent_id, $color) {
129 global $javascript_on;
a07cd1a4 130
c615b1da 131 $params = '?passed_ent_id=' . $passed_ent_id .
1fca12b5 132 '&mailbox=' . urlencode($mailbox) .
133 '&passed_id=' . $passed_id;
10f0ce72 134
a07cd1a4 135 $print_text = _("View Printable Version");
10f0ce72 136
c615b1da 137 $result = '';
a07cd1a4 138 /* Output the link. */
139 if ($javascript_on) {
3d570ba0 140 $result .= '<script language="javascript" type="text/javascript">' . "\n" .
a07cd1a4 141 '<!--' . "\n" .
142 " function printFormat() {\n" .
143 ' window.open("../src/printer_friendly_main.php' .
c615b1da 144 $params . '","Print","width=800,height=600");' . "\n".
a07cd1a4 145 " }\n" .
146 "// -->\n" .
147 "</script>\n" .
b5058e9e 148 "<a href=\"javascript:printFormat();\">$print_text</a>\n";
a07cd1a4 149 } else {
b5058e9e 150 $result .= '<A target="_blank" HREF="../src/printer_friendly_bottom.php' .
151 "$params\">$print_text</a>\n";
a07cd1a4 152 }
a07cd1a4 153 return ($result);
154}
155
57257333 156function ServerMDNSupport( $read ) {
f69feefe 157 /* escaping $ doesn't work -> \x36 */
158 $ret = preg_match( '/(\x36MDNSent|\\\*)/i', $read );
57257333 159 return ( $ret );
160}
161
c615b1da 162function SendMDN ( $mailbox, $passed_id, $sender, $message) {
163 global $username, $attachment_dir, $SERVER_NAME,
164 $version, $attachments;
57257333 165
38bca81c 166 $header = $message->rfc822_header;
57257333 167 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
5200c026 168
169 $recipient_o = $header->dnt;
170 $recipient = $recipient_o->getAddress(true);
57257333 171
172 // part 1 (RFC2298)
173
174 $senton = getLongDateString( $header->date );
175 $to_array = $header->to;
176 $to = '';
177 foreach ($to_array as $line) {
af568a82 178 $to .= ' '.$line->getAddress();
57257333 179 }
180
181 $subject = $header->subject;
182 $now = getLongDateString( time() );
46bb8da8 183
78db1583 184 set_my_charset();
185
46bb8da8 186 $body = _("Your message") . "\r\n\r\n" .
187 "\t" . _("To:") . ' ' . $to . "\r\n" .
188 "\t" . _("Subject:") . ' ' . $subject . "\r\n" .
189 "\t" . _("Sent:") . ' ' . $senton . "\r\n" .
190 "\r\n" .
191 sprintf( _("Was displayed on %s"), $now );
f69feefe 192
57257333 193 // part2 (RFC2298)
57257333 194 $original_recipient = $to;
195 $original_message_id = $header->message_id;
196
197 $part2 = "Reporting-UA : $SERVER_NAME ; SquirrelMail (version $version) \r\n";
198 if ($original_recipient != '') {
199 $part2 .= "Original-Recipient : $original_recipient\r\n";
200 }
201 $final_recipient = $sender;
202 $part2 .= "Final-Recipient: rfc822; $final_recipient\r\n" .
203 "Original-Message-ID : $original_message_id\r\n" .
204 "Disposition: manual-action/MDN-sent-manually; displayed\r\n";
205
57257333 206 $localfilename = GenerateRandomString(32, 'FILE', 7);
207 $full_localfilename = "$hashed_attachment_dir/$localfilename";
208
209 $fp = fopen( $full_localfilename, 'w');
210 fwrite ($fp, $part2);
211 fclose($fp);
212
213 $newAttachment = array();
214 $newAttachment['localfilename'] = $localfilename;
215 $newAttachment['type'] = "message/disposition-notification";
aa866a40 216 $newAttachment['session']=-1;
57257333 217 $attachments[] = $newAttachment;
5200c026 218
5200c026 219 return (SendMessage($recipient, '', '', _("Read:") . ' ' . $subject,
c615b1da 220 $body, 0, True, 3, -1) );
57257333 221}
222
223
c615b1da 224function ToggleMDNflag ( $set ,$imapConnection, $mailbox, $passed_id, $uid_support) {
0892e427 225 $sg = $set?'+':'-';
226 $cmd = 'STORE ' . $passed_id . ' ' . $sg . 'FLAGS ($MDNSent)';
0892e427 227 $read = sqimap_run_command ($imapConnection, $cmd, true, $response,
507d14ea 228 $readmessage, $uid_support);
57257333 229}
230
231function ClearAttachments() {
232 global $username, $attachments, $attachment_dir;
233
234 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
235
aa866a40 236 $rem_attachments = array();
57257333 237 foreach ($attachments as $info) {
b2c19764 238 if ($info['session'] == -1) {
aa866a40 239 $attached_file = "$hashed_attachment_dir/$info[localfilename]";
240 if (file_exists($attached_file)) {
241 unlink($attached_file);
242 }
243 } else {
244 $rem_attachments[] = $info;
245 }
246 }
68c3b52a 247 $attachments = $rem_attachments;
57257333 248}
249
4d0cd98b 250function formatRecipientString($recipients, $item ) {
c615b1da 251 global $show_more_cc, $show_more, $show_more_bcc,
38c944cc 252 $PHP_SELF;
4d0cd98b 253
38c944cc 254 if ((is_array($recipients)) && (isset($recipients[0]))) {
1fca12b5 255 $string = '';
4d0cd98b 256 $ary = $recipients;
38c944cc 257 $show = false;
258
259 if ($item == 'to') {
260 if ($show_more) {
261 $show = true;
262 $url = set_url_var($PHP_SELF, 'show_more',0);
263 } else {
264 $url = set_url_var($PHP_SELF, 'show_more',1);
265 }
266 } else if ($item == 'cc') {
267 if ($show_more_cc) {
268 $url = set_url_var($PHP_SELF, 'show_more_cc',0);
269 $show = true;
270 } else {
271 $url = set_url_var($PHP_SELF, 'show_more_cc',1);
272 }
273 } else if ($item == 'bcc') {
274 if ($show_more_bcc) {
275 $url = set_url_var($PHP_SELF, 'show_more_bcc',0);
276 $show = true;
277 } else {
278 $url = set_url_var($PHP_SELF, 'show_more_bcc',1);
279 }
280 }
4d0cd98b 281
38c944cc 282 $cnt = count($ary);
c615b1da 283 $i = 0;
38c944cc 284 while ($i < $cnt) {
c615b1da 285 $ary[$i] = htmlspecialchars($ary[$i]->getAddress());
4d0cd98b 286 if ($string) {
38c944cc 287 $string .= '<BR>'.$ary[$i];
4d0cd98b 288 } else {
38c944cc 289 $string = $ary[$i];
290 if ($cnt>1) {
291 $string .= '&nbsp;(<A HREF="'.$url;
292 if ($show) {
c615b1da 293 $string .= '">'._("less").'</A>)';
38c944cc 294 } else {
c615b1da 295 $string .= '">'._("more").'</A>)';
38c944cc 296 break;
297 }
298 }
4d0cd98b 299 }
4d0cd98b 300 $i++;
1fca12b5 301 }
4d0cd98b 302 }
303 else {
1fca12b5 304 $string = '';
4d0cd98b 305 }
c615b1da 306 return $string;
307}
308
af568a82 309function formatEnvheader($mailbox, $passed_id, $passed_ent_id, $message,
310 $color, $FirstTimeSee) {
c615b1da 311 global $msn_user_support, $default_use_mdn, $draft_folder, $sent_folder,
312 $default_use_priority, $show_xmailer_default,
313 $mdn_user_support, $PHP_SELF, $javascript_on;
38bca81c 314
315 $header = $message->rfc822_header;
c615b1da 316 $env = array();
88d3af4f 317 $env[_("Subject")] = htmlspecialchars($header->subject);
38bca81c 318 $from_name = $header->getAddr_s('from');
319 if (!$from_name) {
320 $from_name = $header->getAddr_s('sender');
321 if (!$from_name) {
322 $from_name = _("Unknown sender");
323 }
c615b1da 324 }
325 $env[_("From")] = htmlspecialchars($from_name);
88d3af4f 326 $env[_("Date")] = getLongDateString($header->date);
c615b1da 327 $env[_("To")] = formatRecipientString($header->to, "to");
328 $env[_("Cc")] = formatRecipientString($header->cc, "cc");
329 $env[_("Bcc")] = formatRecipientString($header->bcc, "bcc");
330 if ($default_use_priority) {
331 $env[_("Priority")] = getPriorityStr($header->priority);
332 }
333 if ($show_xmailer_default) {
334 $env[_("Mailer")] = $header->xmailer;
335 }
336 if ($default_use_mdn) {
337 if ($mdn_user_support) {
338 if ($header->dnt) {
339 if ($message->is_mdnsent) {
340 $env[_("Read receipt")] = _("send");
341 } else {
342 if ( !($mailbox == $draft_folder ||
27ff41bd 343 $mailbox == $sent_folder ||
344 $message->is_deleted ||
345 $passed_ent_id)) {
c615b1da 346 $mdn_url = $PHP_SELF . '&sendreceipt=1';
c615b1da 347 if ($FirstTimeSee && $javascript_on) {
348 $script = '<script language="JavaScript" type="text/javascript">' ."\n";
349 $script .= '<!--'. "\n";
350 $script .= 'if(window.confirm("' .
351 _("The message sender has requested a response to indicate that you have read this message. Would you like to send a receipt?") .
352 '")) { '."\n" .
353 ' sendMDN()'.
354 '}' . "\n";
355 $script .= '// -->'. "\n";
356 $script .= '</script>'. "\n";
357 echo $script;
358 }
359 $env[_("Read receipt")] = _("requested") .
360 '&nbsp;<a href="'.$mdn_url.'">['. _("Send read receipt now") .']</a>';
361 } else {
362 $env[_("Read receipt")] = _("requested");
363 }
364 }
365 }
366 }
367 }
368
9feb4369 369 $s = '<TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="0" BORDER="0"';
370 $s .= ' ALIGN="center" BGCOLOR="' . $color[0] . '">';
c615b1da 371 foreach ($env as $key => $val) {
372 if ($val) {
9feb4369 373 $s .= '<TR>';
9a231083 374 $s .= html_tag('TD', '<B>' . $key . ':&nbsp;&nbsp;</B>', 'RIGHT', '', 'VALIGN="TOP" WIDTH="20%"') . "\n";
375 $s .= html_tag('TD', $val, 'left', '', 'VALIGN="TOP" WIDTH="80%"') . "\n";
9feb4369 376 $s .= '</TR>';
c615b1da 377 }
378 }
7172cad7 379 echo $s;
9feb4369 380 do_hook("read_body_header");
381 formatToolbar($mailbox,$passed_id,$passed_ent_id,$message, $color);
382 echo '</table>';
c615b1da 383}
384
7172cad7 385function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_response) {
c615b1da 386 global $base_uri, $sent_folder, $draft_folder, $where, $what, $color, $sort,
8fde8417 387 $startMessage, $compose_new_win, $PHP_SELF, $save_as_draft;
c615b1da 388
389 $topbar_delimiter = '&nbsp;|&nbsp;';
f099d05f 390 $urlMailbox = urlencode($mailbox);
c615b1da 391 $s = '<table width="100%" cellpadding="3" cellspacing="0" align="center"'.
392 ' border="0" bgcolor="'.$color[9].'"><tr><td align="left" width="33%"><small>';
393
394 $msgs_url = $base_uri . 'src/';
395 if (isset($where) && isset($what)) {
d215ca7d 396 $msgs_url .= 'search.php?where='.urlencode($where).
c615b1da 397 '&amp;what='.urlencode($what).'&amp;mailbox='.$urlMailbox;
d215ca7d 398 $msgs_str = _("Search results");
c615b1da 399 } else {
400 $msgs_url .= 'right_main.php?sort='.$sort.'&amp;startMessage='.
401 $startMessage.'&amp;mailbox='.$urlMailbox;
d215ca7d 402 $msgs_str = _("Message List");
c615b1da 403 }
d215ca7d 404 $s .= '<a href="'. $msgs_url.'">'.$msgs_str.'</a>';
c615b1da 405 $s .= $topbar_delimiter;
406
407 $delete_url = $base_uri . 'src/delete_message.php?mailbox='.$urlMailbox.
408 '&amp;message='.$passed_id.'&amp;';
409 if (!(isset($passed_ent_id) && $passed_ent_id)) {
410 if ($where && $what) {
411 $delete_url .= 'where=' . urlencode($where) . '&amp;what=' . urlencode($what);
412 } else {
413 $delete_url .= 'sort='. $sort . '&amp;startMessage='. $startMessage;
414 }
415 $s .= '<a href="'. $delete_url.'">'._("Delete").'</a>';
416 }
417
418 $comp_uri = $base_uri . 'src/compose.php'.
419 '?passed_id='.$passed_id.
420 '&amp;mailbox='.$urlMailbox.
8fde8417 421 (isset($passed_ent_id)?'&amp;passed_ent_id='.$passed_ent_id:'');
c615b1da 422
423 if (($mailbox == $draft_folder) && ($save_as_draft)) {
424 $comp_alt_uri = $comp_uri . '&amp;action=draft';
425 $comp_alt_string = _("Resume Draft");
426 } else if ($mailbox == $sent_folder) {
427 $comp_alt_uri = $comp_uri . '&amp;action=edit_as_new';
428 $comp_alt_string = _("Edit Message as New");
429 }
430 if (isset($comp_alt_uri)) {
431 $s .= $topbar_delimiter;
432 if ($compose_new_win == '1') {
433 $s .= '<a href="javascript:void(0)" '.
8fde8417 434 'onclick="comp_in_new(\''.$comp_alt_uri.'\')">'.$comp_alt_string.'</a>';
c615b1da 435 } else {
436 $s .= '<a href="'.$comp_alt_uri.'">'.$comp_alt_string.'</a>';
437 }
438 }
439
440 $s .= '</small></td><td align="center" width="33%"><small>';
441
442 if (!(isset($where) && isset($what)) && !$passed_ent_id) {
443 $prev = findPreviousMessage($mbx_response['EXISTS'], $passed_id);
444 $next = findNextMessage($passed_id);
445 if ($prev != -1) {
446 $uri = $base_uri . 'src/read_body.php?passed_id='.$prev.
447 '&amp;mailbox='.$urlMailbox.'&amp;sort='.$sort.
448 '&amp;startMessage='.$startMessage.'&amp;show_more=0';
449 $s .= '<a href="'.$uri.'">'._("Previous").'</a>';
450 } else {
451 $s .= _("Previous");
452 }
453 $s .= $topbar_delimiter;
454 if ($next != -1) {
455 $uri = $base_uri . 'src/read_body.php?passed_id='.$next.
456 '&amp;mailbox='.$urlMailbox.'&amp;sort='.$sort.
457 '&amp;startMessage='.$startMessage.'&amp;show_more=0';
458 $s .= '<a href="'.$uri.'">'._("Next").'</a>';
459 } else {
460 $s .= _("Next");
461 }
462 } else if (isset($passed_ent_id) && $passed_ent_id) {
7172cad7 463 /* code for navigating through attached message/rfc822 messages */
464 $url = set_url_var($PHP_SELF, 'passed_ent_id',0);
465 $s .= '<a href="'.$url.'">'._("View Message").'</a>';
466 $par_ent_id = $message->parent->entity_id;
467 if ($par_ent_id) {
468 $par_ent_id = substr($par_ent_id,0,-2);
469 $s .= $topbar_delimiter;
470 $url = set_url_var($PHP_SELF, 'passed_ent_id',$par_ent_id);
471 $s .= '<a href="'.$url.'">'._("Up").'</a>';
472 }
c615b1da 473 }
474
a128c967 475 $s .= '</small></td><td align="right" width="33%" nowrap><small>';
c615b1da 476 $comp_action_uri = $comp_uri . '&amp;action=forward';
477 if ($compose_new_win == '1') {
478 $s .= '<a href="javascript:void(0)" '.
479 'onclick="comp_in_new(\''.$comp_action_uri.'\')">'._("Forward").'</a>';
480 } else {
481 $s .= '<a href="'.$comp_action_uri.'">'._("Forward").'</a>';
482 }
483 $s .= $topbar_delimiter;
484
a128c967 485 $comp_action_uri = $comp_uri . '&amp;action=forward_as_attachment';
486 if ($compose_new_win == '1') {
487 $s .= '<a href="javascript:void(0)" '.
220d8cf7 488 'onclick="comp_in_new(\''.$comp_action_uri.'\')">'._("Forward as Attachment").'</a>';
a128c967 489 } else {
220d8cf7 490 $s .= '<a href="'.$comp_action_uri.'">'._("Forward as Attachment").'</a>';
a128c967 491 }
492 $s .= $topbar_delimiter;
493
494
495
c615b1da 496 $comp_action_uri = decodeHeader($comp_uri . '&amp;action=reply');
497 if ($compose_new_win == '1') {
498 $s .= '<a href="javascript:void(0)" '.
499 'onclick="comp_in_new(\''.$comp_action_uri.'\')">'._("Reply").'</a>';
500 } else {
501 $s .= '<a href="'.$comp_action_uri.'">'._("Reply").'</a>';
502 }
503 $s .= $topbar_delimiter;
504
505 $comp_action_uri = $comp_uri . '&amp;action=reply_all';
506 if ($compose_new_win == '1') {
507 $s .= '<a href="javascript:void(0)" '.
508 'onclick="comp_in_new(\''.$comp_action_uri.'\')">'._("Reply All").'</a>';
509 } else {
510 $s .= '<a href="'.$comp_action_uri.'">'._("Reply All").'</a>';
511 }
512 $s .= '</small></td></tr></table>';
7172cad7 513 echo $s;
c615b1da 514}
515
516function formatToolbar($mailbox, $passed_id, $passed_ent_id, $message, $color) {
8fde8417 517 global $QUERY_STRING, $base_uri;
c615b1da 518
f099d05f 519 $urlMailbox = urlencode($mailbox);
8fde8417 520 $url = $base_uri.'src/view_header.php?'.$QUERY_STRING;
9feb4369 521
9feb4369 522 $s = "<TR>\n";
25516e56 523 $s .= '<TD VALIGN="MIDDLE" ALIGN="RIGHT" WIDTH="20%"><B>' . _("Options") . ":&nbsp;&nbsp;</B></TD>\n";
a128c967 524 $s .= '<TD VALIGN="MIDDLE" ALIGN="LEFT" WIDTH="80%"><SMALL>';
8fde8417 525 $s .= '<a href="'.$url.'">'.("View Full Header").'</a>';
9feb4369 526
527 /* Output the printer friendly link if we are in subtle mode. */
528 $s .= '&nbsp;|&nbsp;';
529 $s .= printer_friendly_link($mailbox, $passed_id, $passed_ent_id, $color);
7172cad7 530 echo $s;
c615b1da 531 do_hook("read_body_header_right");
a128c967 532 $s = "</SMALL></TD>\n";
533 $s .= "</TR>\n";
534 echo $s;
535
536
4d0cd98b 537}
538
539
57257333 540/*
541 * Main of read_boby.php --------------------------------------------------
542 */
543
544/*
545 Urled vars
546 ----------
547 $passed_id
548*/
a07cd1a4 549
38c944cc 550global $uid_support, $sqimap_capabilities;
551
6a108031 552if (isset($mailbox)) {
4366bea4 553 $mailbox = urldecode( $mailbox );
554}
38c944cc 555
1fca12b5 556$imapConnection = sqimap_login($username, $key, $imapServerAddress,
557 $imapPort, 0);
38c944cc 558
559$mbx_response = sqimap_mailbox_select($imapConnection, $mailbox, false, false, true);
560
561if (!isset($messages)) {
562 $messages = array();
563 session_register('messages');
38c944cc 564}
565
566/**
567 * $message contains all information about the message
568 * including header and body
569 */
37d2a6ee 570
571$uidvalidity = $mbx_response['UIDVALIDITY'];
572
573if (!isset($messages[$uidvalidity])) {
574 $messages[$uidvalidity] = array();
575}
5200c026 576if (!isset($messages[$uidvalidity][$passed_id]) || !$uid_support) {
577 $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
578 $messages[$uidvalidity][$passed_id] = $message;
38c944cc 579} else {
38bca81c 580 $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
581// $message = $messages[$uidvalidity][$passed_id];
5200c026 582}
af568a82 583$FirstTimeSee = !$message->is_seen;
584$message->is_seen = true;
585$messages[$uidvalidity][$passed_id] = $message;
586
5200c026 587if (isset($passed_ent_id)) {
588 $message = $message->getEntity($passed_ent_id);
141a16b2 589 $read = sqimap_run_command ($imapConnection, "FETCH $passed_id BODY[$passed_ent_id.HEADER]", true, $response, $msg, $uid_support);
590 $rfc822_header = new rfc822_header();
591 $rfc822_header->parseHeader($read);
592 $message->rfc822_header = $rfc822_header;
c615b1da 593} else {
594 $passed_ent_id = 0;
38c944cc 595}
5200c026 596$header = $message->header;
57257333 597
5200c026 598//do_hook('html_top');
57257333 599
5200c026 600/* =============================================================================
601 * block for handling incoming url vars
602 *
603 * =============================================================================
604 */
605
5200c026 606if (isset($sendreceipt)) {
607 if ( !$message->is_mdnsent ) {
608 if (isset($identity) ) {
609 $final_recipient = getPref($data_dir, $username, 'email_address' . '0', '' );
610 } else {
611 $final_recipient = getPref($data_dir, $username, 'email_address', '' );
612 }
613
614 $final_recipient = trim($final_recipient);
615 if ($final_recipient == '' ) {
616 $final_recipient = getPref($data_dir, $username, 'email_address', '' );
617 }
af568a82 618 $supportMDN = ServerMDNSupport($mbx_response["PERMANENTFLAGS"]);
c615b1da 619 if ( SendMDN( $mailbox, $passed_id, $final_recipient, $message ) > 0 && $supportMDN ) {
620 ToggleMDNflag( true, $imapConnection, $mailbox, $passed_id, $uid_support);
5200c026 621 $message->is_mdnsent = true;
6a108031 622 $messages[$uidvalidity][$passed_id]=$message;
5200c026 623 }
624 ClearAttachments();
625 }
626}
5200c026 627/* =============================================================================
628 * end block for handling incoming url vars
629 *
630 * =============================================================================
631 */
38c944cc 632$msgs[$passed_id]['FLAG_SEEN'] = true;
38c944cc 633
5200c026 634$messagebody = '';
6a108031 635$ent_ar = $message->findDisplayEntity(array());
a128c967 636$cnt = count($ent_ar);
637for ($i = 0; $i < $cnt; $i++) {
6a108031 638 $messagebody .= formatBody($imapConnection, $message, $color, $wrap_at, $ent_ar[$i], $passed_id, $mailbox);
a128c967 639 if ($i != $cnt-1) {
640 $messagebody .= '<hr noshade size=1>';
641 }
38c944cc 642}
6a108031 643
c615b1da 644displayPageHeader($color, $mailbox);
645do_hook('read_body_top');
7172cad7 646formatMenuBar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_response);
af568a82 647formatEnvheader($mailbox, $passed_id, $passed_ent_id, $message, $color, $FirstTimeSee);
a128c967 648echo '<table width="100%" cellpadding="0" cellspacing="5" align="center" border="0">';
649echo ' <tr><td>';
650echo ' <table width="100%" cellpadding="1" cellspacing="0" align="center"'.' border="0" bgcolor="'.$color[9].'">';
651echo ' <tr><td>';
652echo ' <table width="100%" cellpadding="3" cellspacing="0" align="center" border="0">';
653echo ' <tr bgcolor="'.$color[4].'"><td>'.$messagebody. '</td></tr>';
654echo ' </table></td></tr>';
655echo ' </table>';
656echo ' </td></tr>';
657
658$attachmentsdisplay = formatAttachments($message,$ent_ar,$mailbox, $passed_id);
659if ($attachmentsdisplay) {
660 echo ' <tr><td>';
661 echo ' <table width="100%" cellpadding="1" cellspacing="0" align="center"'.' border="0" bgcolor="'.$color[9].'">';
662 echo ' <tr><td>';
663 echo ' <table width="100%" cellpadding="1" cellspacing="0" align="center" border="0" bgcolor="'.$color[4].'">';
1bf21507 664 echo ' <tr><td ALIGN="left" bgcolor="'.$color[9].'"><b>';
a128c967 665 echo _("Attachments").':</b></td></tr><tr><td>';
ab596baa 666 echo ' <table width="100%" cellpadding="2" cellspacing="2" align="center"'.' border="0" bgcolor="'.$color[0].'">';
a128c967 667 echo $attachmentsdisplay;
668 echo ' </td></tr></table></table></td></tr>';
669 echo ' </table></td></tr>';
670 echo ' </table>';
671 echo ' </td></tr>';
672}
c615b1da 673echo '</table>';
a07cd1a4 674
a128c967 675
a07cd1a4 676/* show attached images inline -- if pref'fed so */
5be9f195 677if (($attachment_common_show_images) &&
a07cd1a4 678 is_array($attachment_common_show_images_list)) {
679 foreach ($attachment_common_show_images_list as $img) {
5be9f195 680 $imgurl = '../src/download.php' .
57257333 681 '?' .
cd7b8833 682 'passed_id=' . urlencode($img['passed_id']) .
3d570ba0 683 '&amp;mailbox=' . urlencode($mailbox) .
684 '&amp;passed_ent_id=' . urlencode($img['ent_id']) .
685 '&amp;absolute_dl=true';
5be9f195 686
b5058e9e 687 echo html_tag( 'table', "\n" .
688 html_tag( 'tr', "\n" .
689 html_tag( 'td', '<img src="' . $imgurl . '">' ."\n", 'left'
690 )
691 ) ,
692 'center', '', 'cellspacing=0 border="0" cellpadding="2"');
10f0ce72 693 }
a07cd1a4 694}
695
c615b1da 696do_hook('read_body_bottom');
697do_hook('html_bottom');
d7eab095 698//$message->clean_up();
a07cd1a4 699sqimap_logout($imapConnection);
700?>
c615b1da 701</body>
702</html>