renamed -> , sqimap_mailbox_select has five arguments and should not be called when...
[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');
5be9f195 21
a07cd1a4 22/**
23* Given an IMAP message id number, this will look it up in the cached
24* and sorted msgs array and return the index. Used for finding the next
25* and previous messages.
26*
27* returns the index of the next valid message from the array
28*/
29function findNextMessage() {
30 global $msort, $currentArrayIndex, $msgs, $sort;
31 $result = -1;
32
33 if ($sort == 6) {
34 if ($currentArrayIndex != 1) {
35 $result = $currentArrayIndex - 1;
36 }
37 } else {
38 for (reset($msort); ($key = key($msort)), (isset($key)); next($msort)) {
39 if ($currentArrayIndex == $msgs[$key]['ID']) {
40 next($msort);
41 $key = key($msort);
42 if (isset($key))
43 $result = $msgs[$key]['ID'];
44 break;
10f0ce72 45 }
46 }
10f0ce72 47 }
a07cd1a4 48 return ($result);
49}
50
51/** Removes just one address from the list of addresses. */
52function RemoveAddress(&$addr_list, $addr) {
53 if ($addr != '') {
54 foreach (array_keys($addr_list, $addr) as $key_to_delete) {
55 unset($addr_list[$key_to_delete]);
10f0ce72 56 }
a07cd1a4 57 }
58}
59
60/** returns the index of the previous message from the array. */
61function findPreviousMessage() {
57257333 62 global $msort, $currentArrayIndex, $sort, $msgs, $imapConnection,
63 $mailbox, $data_dir, $username;
64
a07cd1a4 65 $result = -1;
66
67 if ($sort == 6) {
68 $numMessages = sqimap_get_num_messages($imapConnection, $mailbox);
69 if ($currentArrayIndex != $numMessages) {
70 $result = $currentArrayIndex + 1;
71 }
72 } else {
73 for (reset($msort); ($key = key($msort)), (isset($key)); next($msort)) {
74 if ($currentArrayIndex == $msgs[$key]['ID']) {
75 prev($msort);
76 $key = key($msort);
77 if (isset($key)) {
78 $result = $msgs[$key]['ID'];
79 break;
10f0ce72 80 }
81 }
10f0ce72 82 }
a07cd1a4 83 }
84 return ($result);
85}
10f0ce72 86
a07cd1a4 87/**
88* Displays a link to a page where the message is displayed more
89* "printer friendly".
90*/
91function printer_friendly_link() {
57257333 92 global $passed_id, $mailbox, $ent_num, $color,
93 $pf_subtle_link,
94 $javascript_on;
a07cd1a4 95
96 if (strlen(trim($mailbox)) < 1) {
97 $mailbox = 'INBOX';
98 }
10f0ce72 99
57257333 100 $params = '?passed_ent_id=' . $ent_num .
101 '&mailbox=' . urlencode($mailbox) .
102 '&passed_id=' . $passed_id;
10f0ce72 103
a07cd1a4 104 $print_text = _("View Printable Version");
10f0ce72 105
a07cd1a4 106 if (!$pf_subtle_link) {
107 /* The link is large, on the bottom of the header panel. */
57257333 108 $result = '<tr bgcolor="' . $color[0] . '">' .
109 '<td class="medText" align="right" valign="top">' .
110 '&nbsp;' .
111 '</td><td class="medText" valign="top" colspan="2">'."\n";
a07cd1a4 112 } else {
113 /* The link is subtle, below "view full header". */
114 $result = "<BR>\n";
115 }
10f0ce72 116
a07cd1a4 117 /* Output the link. */
118 if ($javascript_on) {
119 $result .= '<script language="javascript">' . "\n" .
120 '<!--' . "\n" .
121 " function printFormat() {\n" .
122 ' window.open("../src/printer_friendly_main.php' .
123 $params . '","Print","width=800,height=600");' . "\n".
124 " }\n" .
125 "// -->\n" .
126 "</script>\n" .
127 "<A HREF=\"javascript:printFormat();\">$print_text</A>\n";
128 } else {
129 $result .= '<A TARGET="_blank" HREF="../src/printer_friendly_bottom.php' .
130 "$params\">$print_text</A>\n";
131 }
10f0ce72 132
a07cd1a4 133 if (!$pf_subtle_link) {
134 /* The link is large, on the bottom of the header panel. */
57257333 135 $result .= '</td></tr>' . "\n";
10f0ce72 136 }
137
a07cd1a4 138 return ($result);
139}
140
57257333 141function ServerMDNSupport( $read ) {
f69feefe 142 /* escaping $ doesn't work -> \x36 */
143 $ret = preg_match( '/(\x36MDNSent|\\\*)/i', $read );
57257333 144 return ( $ret );
145}
146
147function SendMDN ( $recipient , $sender) {
148 global $imapConnection, $mailbox, $username, $attachment_dir, $SERVER_NAME,
149 $version, $attachments, $identity, $data_dir, $passed_id;
150
99fbb343 151 $header = sqimap_get_message_header($imapConnection, $passed_id, $mailbox);
57257333 152 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
153
154 // part 1 (RFC2298)
155
156 $senton = getLongDateString( $header->date );
157 $to_array = $header->to;
158 $to = '';
159 foreach ($to_array as $line) {
160 $to .= " $line ";
161 }
162
163 $subject = $header->subject;
164 $now = getLongDateString( time() );
46bb8da8 165
166 $body = _("Your message") . "\r\n\r\n" .
167 "\t" . _("To:") . ' ' . $to . "\r\n" .
168 "\t" . _("Subject:") . ' ' . $subject . "\r\n" .
169 "\t" . _("Sent:") . ' ' . $senton . "\r\n" .
170 "\r\n" .
171 sprintf( _("Was displayed on %s"), $now );
f69feefe 172
57257333 173 // part2 (RFC2298)
174
175 $original_recipient = $to;
176 $original_message_id = $header->message_id;
177
178 $part2 = "Reporting-UA : $SERVER_NAME ; SquirrelMail (version $version) \r\n";
179 if ($original_recipient != '') {
180 $part2 .= "Original-Recipient : $original_recipient\r\n";
181 }
182 $final_recipient = $sender;
183 $part2 .= "Final-Recipient: rfc822; $final_recipient\r\n" .
184 "Original-Message-ID : $original_message_id\r\n" .
185 "Disposition: manual-action/MDN-sent-manually; displayed\r\n";
186
187
188 $localfilename = GenerateRandomString(32, 'FILE', 7);
189 $full_localfilename = "$hashed_attachment_dir/$localfilename";
190
191 $fp = fopen( $full_localfilename, 'w');
192 fwrite ($fp, $part2);
193 fclose($fp);
194
195 $newAttachment = array();
196 $newAttachment['localfilename'] = $localfilename;
197 $newAttachment['type'] = "message/disposition-notification";
198
199 $attachments[] = $newAttachment;
200 $MDN_to = trim($recipient);
201 $reply_id = 0;
202
54817114 203 return (SendMessage($MDN_to,'','', _("Read:") . ' ' . $subject, $body,$reply_id, True, 3) );
57257333 204}
205
206
207function ToggleMDNflag ( $set ) {
77b88425 208 global $imapConnection, $passed_id, $mailbox;
f69feefe 209 sqimap_mailbox_select($imapConnection, $mailbox);
0892e427 210
211 $sg = $set?'+':'-';
212 $cmd = 'STORE ' . $passed_id . ' ' . $sg . 'FLAGS ($MDNSent)';
0892e427 213 $read = sqimap_run_command ($imapConnection, $cmd, true, $response,
214 $readmessage);
57257333 215}
216
217function ClearAttachments() {
218 global $username, $attachments, $attachment_dir;
219
220 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
221
222 foreach ($attachments as $info) {
223 $attached_file = "$hashed_attachment_dir/$info[localfilename]";
224 if (file_exists($attached_file)) {
225 unlink($attached_file);
226 }
227 }
228
229 $attachments = array();
230}
231
232
233/*
234 * Main of read_boby.php --------------------------------------------------
235 */
236
237/*
238 Urled vars
239 ----------
240 $passed_id
241*/
a07cd1a4 242
243$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
650be221 244$read = sqimap_mailbox_select($imapConnection, $mailbox, false, false, true);
57257333 245
a07cd1a4 246do_hook('html_top');
57257333 247
248/*
249 * The following code sets necesarry stuff for the MDN thing
250 */
251if( $default_use_mdn &&
252 ( $mdn_user_support = getPref($data_dir, $username, 'mdn_user_support', $default_use_mdn) ) ) {
253
f69feefe 254 $supportMDN = ServerMDNSupport($read["PERMANENTFLAGS"]);
57257333 255 $flags = sqimap_get_flags ($imapConnection, $passed_id);
650be221 256 $FirstTimeSee = !(in_array( 'Seen', $flags ));
57257333 257}
258
a07cd1a4 259displayPageHeader($color, $mailbox);
260
57257333 261
262/*
263 * The following code shows the header of the message and then exit
264 */
a07cd1a4 265if (isset($view_hdr)) {
451a5790 266 $read = sqimap_run_command ($imapConnection, "FETCH $passed_id BODY[HEADER]", true, $a, $b);
a07cd1a4 267
268 echo '<BR>' .
269 '<TABLE WIDTH="100%" CELLPADDING="2" CELLSPACING="0" BORDER="0" ALIGN="CENTER">' . "\n" .
270 " <TR><TD BGCOLOR=\"$color[9]\" WIDTH=\"100%\"><CENTER><B>" . _("Viewing Full Header") . '</B> - '.
271 '<a href="' . $base_uri . "src/read_body.php?mailbox=".urlencode($mailbox);
272 if (isset($where) && isset($what)) {
273 // Got here from a search
274 echo "&passed_id=$passed_id&where=".urlencode($where)."&what=".urlencode($what).'">';
275 } else {
276 echo "&passed_id=$passed_id&startMessage=$startMessage&show_more=$show_more\">";
277 }
57257333 278 echo _("View message") . "</a></b></center></td></tr></table>\n" .
279 "<table width=\"99%\" cellpadding=2 cellspacing=0 border=0 align=center>\n" .
280 '<tr><td>';
a07cd1a4 281
282 $cnum = 0;
283 for ($i=1; $i < count($read); $i++) {
284 $line = htmlspecialchars($read[$i]);
285 if (eregi("^&gt;", $line)) {
286 $second[$i] = $line;
287 $first[$i] = '&nbsp;';
288 $cnum++;
289 } else if (eregi("^[ |\t]", $line)) {
290 $second[$i] = $line;
291 $first[$i] = '';
292 } else if (eregi("^([^:]+):(.+)", $line, $regs)) {
293 $first[$i] = $regs[1] . ':';
294 $second[$i] = $regs[2];
295 $cnum++;
0606ca1f 296 } else {
a07cd1a4 297 $second[$i] = trim($line);
298 $first[$i] = '';
10f0ce72 299 }
a07cd1a4 300 }
301 for ($i=0; $i < count($second); $i = $j) {
302 if (isset($first[$i])) {
303 $f = $first[$i];
0606ca1f 304 }
a07cd1a4 305 if (isset($second[$i])) {
306 $s = nl2br($second[$i]);
307 }
308 $j = $i + 1;
309 while (($first[$j] == '') && ($j < count($first))) {
310 $s .= '&nbsp;&nbsp;&nbsp;&nbsp;' . nl2br($second[$j]);
311 $j++;
0606ca1f 312 }
a07cd1a4 313 parseEmail($s);
314 if (isset($f)) echo "<nobr><tt><b>$f</b>$s</tt></nobr>";
10f0ce72 315 }
57257333 316 echo "</td></tr></table>\n" .
317 '</body></html>';
a07cd1a4 318 sqimap_logout($imapConnection);
319 exit;
320}
321
322if (isset($msgs)) {
323 $currentArrayIndex = $passed_id;
324} else {
325 $currentArrayIndex = -1;
326}
327
328for ($i = 0; $i < count($msgs); $i++) {
329 if ($msgs[$i]['ID'] == $passed_id) {
330 $msgs[$i]['FLAG_SEEN'] = true;
10f0ce72 331 }
a07cd1a4 332}
333
334// $message contains all information about the message
335// including header and body
336$message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
337
338/** translate the subject and mailbox into url-able text **/
339$url_subj = urlencode(trim($message->header->subject));
340$urlMailbox = urlencode($mailbox);
341$url_replyto = '';
342if (isset($message->header->replyto)) {
343 $url_replyto = urlencode($message->header->replyto);
344}
345
346$url_replytoall = $url_replyto;
347
348// If we are replying to all, then find all other addresses and
349// add them to the list. Remove duplicates.
350// This is somewhat messy, so I'll explain:
351// 1) Take all addresses (from, to, cc) (avoid nasty join errors here)
352$url_replytoall_extra_addrs = array_merge(
353 array($message->header->from),
354 $message->header->to,
355 $message->header->cc
356);
357
358// 2) Make one big string out of them
359$url_replytoall_extra_addrs = join(';', $url_replytoall_extra_addrs);
360
361// 3) Parse that into an array of addresses
362$url_replytoall_extra_addrs = parseAddrs($url_replytoall_extra_addrs);
363
364// 4) Make them unique -- weed out duplicates
365// (Coded for PHP 4.0.0)
366$url_replytoall_extra_addrs =
367 array_keys(array_flip($url_replytoall_extra_addrs));
368
369// 5) Remove the addresses we'll be sending the message 'to'
370$url_replytoall_avoid_addrs = '';
371if (isset($message->header->replyto)) {
372 $url_replytoall_avoid_addrs = $message->header->replyto;
373}
374
375$url_replytoall_avoid_addrs = parseAddrs($url_replytoall_avoid_addrs);
376foreach ($url_replytoall_avoid_addrs as $addr) {
377 RemoveAddress($url_replytoall_extra_addrs, $addr);
378}
379
380// 6) Remove our identities from the CC list (they still can be in the
381// TO list) only if $include_self_reply_all is turned off
382if (!$include_self_reply_all) {
383 RemoveAddress($url_replytoall_extra_addrs,
384 getPref($data_dir, $username, 'email_address'));
385 $idents = getPref($data_dir, $username, 'identities');
386 if ($idents != '' && $idents > 1) {
387 for ($i = 1; $i < $idents; $i ++) {
388 $cur_email_address = getPref($data_dir, $username, 'email_address' . $i);
389 RemoveAddress($url_replytoall_extra_addrs, $cur_email_address);
10f0ce72 390 }
692155b7 391 }
a07cd1a4 392}
1108e8bb 393
a07cd1a4 394// 7) Smoosh back into one nice line
395$url_replytoallcc = getLineOfAddrs($url_replytoall_extra_addrs);
692155b7 396
a07cd1a4 397// 8) urlencode() it
398$url_replytoallcc = urlencode($url_replytoallcc);
be69e508 399
a07cd1a4 400$dateString = getLongDateString($message->header->date);
5bc39e3f 401
a07cd1a4 402// What do we reply to -- text only, if possible
403$ent_num = findDisplayEntity($message);
5bc39e3f 404
a07cd1a4 405/** TEXT STRINGS DEFINITIONS **/
406$echo_more = _("more");
407$echo_less = _("less");
408
57257333 409if (!isset($show_more_cc)) {
410 $show_more_cc = FALSE;
411}
10f0ce72 412
a07cd1a4 413/** FORMAT THE TO STRING **/
414$i = 0;
415$to_string = '';
416$to_ary = $message->header->to;
417while ($i < count($to_ary)) {
418 $to_ary[$i] = htmlspecialchars(decodeHeader($to_ary[$i]));
419
420 if ($to_string) {
421 $to_string = "$to_string<BR>$to_ary[$i]";
422 } else {
423 $to_string = "$to_ary[$i]";
10f0ce72 424 }
a07cd1a4 425
426 $i++;
427 if (count($to_ary) > 1) {
428 if ($show_more == false) {
429 if ($i == 1) {
430 /* From a search... */
431 $to_string .= '&nbsp;(<A HREF="' . $base_uri .
432 "src/read_body.php?mailbox=$urlMailbox&passed_id=$passed_id&";
433 if (isset($where) && isset($what)) {
434 $to_string .= 'where='.urlencode($where)."&what=".urlencode($what)."&show_more=1&show_more_cc=$show_more_cc\">$echo_more</A>)";
435 } else {
436 $to_string .= "sort=$sort&startMessage=$startMessage&show_more=1&show_more_cc=$show_more_cc\">$echo_more</A>)";
437 }
438 $i = count($to_ary);
439 }
440 } else if ($i == 1) {
441 /* From a search... */
442 $to_string .= '&nbsp;(<A HREF="' . $base_uri .
443 "src/read_body.php?mailbox=$urlMailbox&passed_id=$passed_id&";
444 if (isset($where) && isset($what)) {
445 $to_string .= 'where='.urlencode($where)."&what=".urlencode($what)."&show_more=0&show_more_cc=$show_more_cc\">$echo_less</A>)";
446 } else {
447 $to_string .= "sort=$sort&startMessage=$startMessage&show_more=0&show_more_cc=$show_more_cc\">$echo_less</A>)";
10f0ce72 448 }
449 }
6dc0e464 450 }
a07cd1a4 451}
452
453/** FORMAT THE CC STRING **/
454$i = 0;
455if (isset ($message->header->cc[0]) && trim($message->header->cc[0])) {
456 $cc_string = "";
457 $cc_ary = $message->header->cc;
458 while ($i < count(decodeHeader($cc_ary))) {
459 $cc_ary[$i] = htmlspecialchars($cc_ary[$i]);
460 if ($cc_string) {
461 $cc_string = "$cc_string<BR>$cc_ary[$i]";
10f0ce72 462 } else {
a07cd1a4 463 $cc_string = "$cc_ary[$i]";
10f0ce72 464 }
465
466 $i++;
a07cd1a4 467 if (count($cc_ary) > 1) {
468 if ($show_more_cc == false) {
10f0ce72 469 if ($i == 1) {
470 /* From a search... */
a07cd1a4 471 $cc_string .= '&nbsp;(<A HREF="' . $base_uri .
472 "src/read_body.php?mailbox=$urlMailbox&passed_id=$passed_id";
10f0ce72 473 if (isset($where) && isset($what)) {
a07cd1a4 474 $cc_string .= '&what='.urlencode($what)."&where=".urlencode($where)."&show_more_cc=1&show_more=$show_more\">$echo_more</A>)";
10f0ce72 475 } else {
a07cd1a4 476 $cc_string .= "&sort=$sort&startMessage=$startMessage&show_more_cc=1&show_more=$show_more\">$echo_more</A>)";
10f0ce72 477 }
a07cd1a4 478 $i = count($cc_ary);
10f0ce72 479 }
480 } else if ($i == 1) {
481 /* From a search... */
a07cd1a4 482 $cc_string .= '&nbsp;(<A HREF="' . $base_uri .
483 "src/read_body.php?mailbox=$urlMailbox&passed_id=$passed_id&";
10f0ce72 484 if (isset($where) && isset($what)) {
a07cd1a4 485 $cc_string .= 'what=' . urlencode($what)."&where=".urlencode($where)."&show_more_cc=0&show_more=$show_more\">$echo_less</A>)";
10f0ce72 486 } else {
a07cd1a4 487 $cc_string .= "sort=$sort&startMessage=$startMessage&show_more_cc=0&show_more=$show_more\">$echo_less</A>)";
10f0ce72 488 }
2844086d 489 }
10f0ce72 490 }
491 }
a07cd1a4 492}
9c3e6cd4 493else {
494 $cc_string = '';
495}
a07cd1a4 496
497/** FORMAT THE BCC STRING **/
498$i = 0;
499if (isset ($message->header->bcc[0]) && trim($message->header->bcc[0])){
500 $bcc_string = "";
501 $bcc_ary = $message->header->bcc;
502 while ($i < count(decodeHeader($bcc_ary))) {
503 $bcc_ary[$i] = htmlspecialchars($bcc_ary[$i]);
504 if ($bcc_string) {
505 $bcc_string = "$bcc_string<BR>$bcc_ary[$i]";
506 } else {
507 $bcc_string = "$bcc_ary[$i]";
10f0ce72 508 }
10f0ce72 509
a07cd1a4 510 $i++;
511 if (count($bcc_ary) > 1) {
512 if ($show_more_cc == false) {
513 if ($i == 1) {
10f0ce72 514 /* From a search... */
a07cd1a4 515 $bcc_string .= '&nbsp;(<A HREF="' . $base_uri .
516 "src/read_body.php?mailbox=$urlMailbox&passed_id=$passed_id&";
10f0ce72 517 if (isset($where) && isset($what)) {
a07cd1a4 518 $bcc_string .= 'what=' . urlencode($what)."&where=".urlencode($where)."&show_more_cc=1&show_more=$show_more\">$echo_more</A>)";
10f0ce72 519 } else {
a07cd1a4 520 $bcc_string .= "sort=$sort&startMessage=$startMessage&show_more_cc=1&show_more=$show_more\">$echo_more</A>)";
521 }
522 $i = count($bcc_ary);
523 }
524 } else if ($i == 1) {
525 /* From a search... */
526 $bcc_string .= '&nbsp;(<A HREF="' . $base_uri .
527 "src/read_body.php?mailbox=$urlMailbox&passed_id=$passed_id&";
528 if (isset($where) && isset($what)) {
529 $bcc_string .= 'what=' . urlencode($what)."&where=".urlencode($where)."&show_more_cc=0&show_more=$show_more\">$echo_less</A>)";
530 } else {
531 $bcc_string .= "sort=$sort&startMessage=$startMessage&show_more_cc=0&show_more=$show_more\">$echo_less</A>)";
10f0ce72 532 }
533 }
534 }
535 }
a07cd1a4 536}
9c3e6cd4 537else {
538 $bcc_string = '';
539}
10f0ce72 540
a07cd1a4 541if ($default_use_priority) {
a7818e8e 542 $priority_level = substr($message->header->priority,0,1);
543
544 switch($priority_level) {
09278ebf 545 /* check for a higher then normal priority. */
546 case '1':
5be9f195 547 case '2':
548 $priority_string = _("High");
09278ebf 549 break;
550
551 /* check for a lower then normal priority. */
552 case '4':
5be9f195 553 case '5':
554 $priority_string = _("Low");
09278ebf 555 break;
5be9f195 556
09278ebf 557 /* check for a normal priority. */
5be9f195 558 case '3':
09278ebf 559 default:
560 $priority_level = '3';
5be9f195 561 $priority_string = _("Normal");
09278ebf 562 break;
5be9f195 563
10f0ce72 564 }
a07cd1a4 565}
566
567/** make sure everything will display in HTML format **/
568$from_name = decodeHeader(htmlspecialchars($message->header->from));
569$subject = decodeHeader(htmlspecialchars($message->header->subject));
570
571do_hook('read_body_top');
572echo '<BR>' .
57257333 573 '<TABLE CELLSPACING="0" WIDTH="100%" BORDER="0" ALIGN="CENTER" CELLPADDING="0">' .
574 '<TR><TD BGCOLOR="' . $color[9] . '" WIDTH="100%">' .
575 '<TABLE WIDTH="100%" CELLSPACING="0" BORDER="0" CELLPADDING="3">' .
576 '<TR>' .
577 '<TD ALIGN="LEFT" WIDTH="33%">' .
578 '<SMALL>' .
579 '<A HREF="' . $base_uri . 'src/';
a07cd1a4 580
581if ($where && $what) {
582 if( $pos == '' ) {
583 $pos = 0;
10f0ce72 584 }
a07cd1a4 585 echo "search.php?where$pos=".urlencode($where)."&pos=$pos&what$pos=".urlencode($what)."&mailbox=$urlMailbox\">";
586} else {
5dd6c4d7 587 echo "right_main.php?sort=$sort&startMessage=$startMessage&mailbox=$urlMailbox\">";
a07cd1a4 588}
589echo _("Message List") .
590 '</A>&nbsp;|&nbsp;' .
591 '<A HREF="' . $base_uri . "src/delete_message.php?mailbox=$urlMailbox&message=$passed_id&";
592if ($where && $what) {
593 echo 'where=' . urlencode($where) . '&what=' . urlencode($what) . '">';
594} else {
595 echo "sort=$sort&startMessage=$startMessage\">";
596}
597echo _("Delete") . '</A>&nbsp;';
598if (($mailbox == $draft_folder) && ($save_as_draft)) {
599 echo '|&nbsp;<A HREF="' . $base_uri .
9c3e6cd4 600 "src/compose.php?mailbox=$mailbox&send_to=$to_string&send_to_cc=$cc_string&send_to_bcc=$bcc_string&subject=$url_subj&draft_id=$passed_id&ent_num=$ent_num\"";
601 if ($compose_new_win == '1') {
602 echo 'TARGET="compose_window" onClick="comp_in_new()"';
603 }
604 echo '>'.
a07cd1a4 605 _("Resume Draft") . '</a>';
606}
607
608echo '&nbsp;&nbsp;' .
57257333 609 '</SMALL>' .
610 '</TD>' .
611 '<TD WIDTH="33%" ALIGN="CENTER">' .
612 '<SMALL>';
a07cd1a4 613
614if ( !($where && $what) ) {
615
616 if ($currentArrayIndex == -1) {
617 echo 'Previous&nbsp;|&nbsp;Next';
10f0ce72 618 } else {
a07cd1a4 619 $prev = findPreviousMessage();
620 $next = findNextMessage();
10f0ce72 621
a07cd1a4 622 if ($prev != -1) {
623 echo '<a href="' . $base_uri . "src/read_body.php?passed_id=$prev&mailbox=$urlMailbox&sort=$sort&startMessage=$startMessage&show_more=0\">" . _("Previous") . "</A>&nbsp;|&nbsp;";
10f0ce72 624 } else {
a07cd1a4 625 echo _("Previous") . '&nbsp;|&nbsp;';
10f0ce72 626 }
7baf86a9 627
a07cd1a4 628 if ($next != -1) {
629 echo '<a href="' . $base_uri . "src/read_body.php?passed_id=$next&mailbox=$urlMailbox&sort=$sort&startMessage=$startMessage&show_more=0\">" . _("Next") . "</A>";
630 } else {
631 echo _("Next");
632 }
10f0ce72 633 }
a07cd1a4 634}
635
57257333 636echo '</SMALL>' .
637 '</TD><TD WIDTH="33%" ALIGN="RIGHT">' .
638 '<SMALL>' .
639 '<A HREF="' . $base_uri . "src/compose.php?forward_id=$passed_id&forward_subj=$url_subj&".
5dd6c4d7 640 ($default_use_priority?"mailprio=$priority_level&":"")
9c3e6cd4 641 ."mailbox=$urlMailbox&ent_num=$ent_num\"";
642 if ($compose_new_win == '1') {
643 echo 'TARGET="compose_window" onClick="comp_in_new()"';
644 }
645 echo '>'.
a07cd1a4 646 _("Forward") .
647 '</A>&nbsp;|&nbsp;' .
57257333 648 '<A HREF="' . $base_uri . "src/compose.php?send_to=$url_replyto&reply_subj=$url_subj&".
5dd6c4d7 649 ($default_use_priority?"mailprio=$priority_level&":"").
9c3e6cd4 650 "reply_id=$passed_id&mailbox=$urlMailbox&ent_num=$ent_num\"";
651 if ($compose_new_win == '1') {
652 echo 'TARGET="compose_window" onClick="comp_in_new()"';
653 }
654 echo '>'.
a07cd1a4 655 _("Reply") .
656 '</A>&nbsp;|&nbsp;' .
57257333 657 '<A HREF="' . $base_uri . "src/compose.php?send_to=$url_replytoall&send_to_cc=$url_replytoallcc&reply_subj=$url_subj&".
5dd6c4d7 658 ($default_use_priority?"mailprio=$priority_level&":"").
9c3e6cd4 659 "reply_id=$passed_id&mailbox=$urlMailbox&ent_num=$ent_num\"";
660 if ($compose_new_win == '1') {
661 echo 'TARGET="compose_window" onClick="comp_in_new()"';
662 }
663 echo '>'.
a07cd1a4 664 _("Reply All") .
665 '</A>&nbsp;&nbsp;' .
57257333 666 '</SMALL>' .
667 '</TD>' .
668 '</TR>' .
669 '</TABLE>' .
670 '</TD></TR>' .
671 '<TR><TD CELLSPACING="0" WIDTH="100%">' .
672 '<TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="3">' . "\n" .
673 '<TR>' . "\n";
a07cd1a4 674
675/** subject **/
57257333 676echo "<TD BGCOLOR=\"$color[0]\" WIDTH=\"10%\" ALIGN=\"right\" VALIGN=\"top\">\n" .
a07cd1a4 677 _("Subject:") .
57257333 678 "</TD><TD BGCOLOR=\"$color[0]\" WIDTH=\"80%\" VALIGN=\"top\">\n" .
679 "<B>$subject</B>&nbsp;\n" .
680 "</TD>\n" .
681 '<TD ROWSPAN="4" width="10%" BGCOLOR="' . $color[0] .
a07cd1a4 682 '" ALIGN=right VALIGN=top NOWRAP><small>'.
683 '<A HREF="' . $base_uri . "src/read_body.php?mailbox=$urlMailbox&passed_id=$passed_id&";
684
685/* From a search... */
686if ($where && $what) {
687 echo 'where=' . urlencode($where) . '&what=' . urlencode($what) .
688 "&view_hdr=1\">" . _("View Full Header") . "</A>\n";
689} else {
690 echo "startMessage=$startMessage&show_more=$show_more&view_hdr=1\">" .
691 _("View Full Header") . "</A>\n";
692}
693
694/* Output the printer friendly link if we are in subtle mode. */
695if ($pf_subtle_link) {
696 echo printer_friendly_link(true);
697}
698
699do_hook("read_body_header_right");
57257333 700echo '</small></TD>' .
701 ' </TR>';
a07cd1a4 702
703/** from **/
57257333 704echo '<TR>' .
705 '<TD BGCOLOR="' . $color[0] . '" ALIGN="RIGHT">' .
a07cd1a4 706 _("From:") .
57257333 707 '</TD><TD BGCOLOR="' . $color[0] . '">' .
708 "<B>$from_name</B>&nbsp;\n" .
709 '</TD>' .
710 '</TR>';
a07cd1a4 711/** date **/
57257333 712echo '<TR>' . "\n" .
713 '<TD BGCOLOR="' . $color[0] . '" ALIGN="RIGHT">' . "\n" .
a07cd1a4 714 _("Date:") .
57257333 715 "</TD><TD BGCOLOR=\"$color[0]\">\n" .
716 "<B>$dateString</B>&nbsp;\n" .
717 '</TD>' . "\n" .
718 '</TR>' . "\n";
a07cd1a4 719
720/** to **/
57257333 721echo "<TR>\n" .
722 "<TD BGCOLOR=\"$color[0]\" ALIGN=RIGHT VALIGN=TOP>\n" .
a07cd1a4 723 _("To:") .
57257333 724 '</TD><TD BGCOLOR="' . $color[0] . '" VALIGN="TOP">' . "\n" .
725 "<B>$to_string</B>&nbsp;\n" .
726 '</TD>' . "\n" .
727 '</TR>' . "\n";
a07cd1a4 728/** cc **/
9e9ad58b 729if (isset($cc_string) && $cc_string <> '') {
57257333 730 echo '<TR>' .
731 "<TD BGCOLOR=\"$color[0]\" ALIGN=RIGHT VALIGN=TOP>" .
732 'Cc:' .
733 "</TD><TD BGCOLOR=\"$color[0]\" VALIGN=TOP colspan=2>" .
734 "<B>$cc_string</B>&nbsp;" .
735 '</TD>' .
736 '</TR>' . "\n";
a07cd1a4 737}
738
739/** bcc **/
9e9ad58b 740if (isset($bcc_string) && $bcc_string <> '') {
57257333 741 echo '<TR>'.
742 "<TD BGCOLOR=\"$color[0]\" ALIGN=RIGHT VALIGN=TOP>" .
743 'Bcc:' .
744 "</TD><TD BGCOLOR=\"$color[0]\" VALIGN=TOP colspan=2>" .
745 "<B>$bcc_string</B>&nbsp;" .
746 '</TD>' .
747 '</TR>' . "\n";
a07cd1a4 748}
9e9ad58b 749if ($default_use_priority && isset($priority_string) && $priority_string <> '' ) {
750 echo '<TR>' .
751 "<TD BGCOLOR=\"$color[0]\" ALIGN=RIGHT VALIGN=TOP>" .
752 _("Priority") . ': '.
753 "</TD><TD BGCOLOR=\"$color[0]\" VALIGN=TOP colspan=2>" .
754 "<B>$priority_string</B>&nbsp;" .
755 '</TD>' .
756 "</TR>" . "\n";
a07cd1a4 757}
758
759if ($show_xmailer_default) {
451a5790 760 $read = sqimap_run_command ($imapConnection, "FETCH $passed_id BODY.PEEK[HEADER.FIELDS (X-Mailer User-Agent)]", true,
a07cd1a4 761 $response, $readmessage);
762 $mailer = substr($read[1], strpos($read[1], " "));
763 if (trim($mailer)) {
57257333 764 echo '<TR>' .
765 "<TD BGCOLOR=\"$color[0]\" ALIGN=RIGHT VALIGN=TOP>" .
766 _("Mailer") . ': '.
767 "</TD><TD BGCOLOR=\"$color[0]\" VALIGN=TOP colspan=2>" .
768 "<B>$mailer</B>&nbsp;" .
769 '</TD>' .
770 "</TR>" . "\n";
10f0ce72 771 }
a07cd1a4 772}
773
774/* Output the printer friendly link if we are not in subtle mode. */
775if (!$pf_subtle_link) {
776 echo printer_friendly_link(true);
777}
778
57257333 779if ($default_use_mdn) {
780 if ($mdn_user_support) {
781
782 // debug gives you the capability to remove mdn-flags
650be221 783 $MDNDebug = true;
57257333 784 $read = sqimap_run_command ($imapConnection, "FETCH $passed_id BODY.PEEK[HEADER.FIELDS (Disposition-Notification-To)]", true,
785 $response, $readmessage);
786 $MDN_to = substr($read[1], strpos($read[1], ' '));
787 $MDN_flag_present = false;
788
789 $read = sqimap_run_command ($imapConnection, "FETCH $passed_id FLAGS", true,
790 $response, $readmessage);
77b88425 791
792 $MDN_flag_present = preg_match( '/.*\$MDNSent/i', $read[0]);
793
57257333 794 if (trim($MDN_to) &&
795 (!isset( $sendreceipt ) || $sendreceipt == '' ) ) {
796
797 if ( $MDN_flag_present && $supportMDN) {
77b88425 798 $sendreceipt = 'removeMDN';
57257333 799 $url = "\"read_body.php?mailbox=$mailbox&passed_id=$passed_id&startMessage=$startMessage&show_more=$show_more&sendreceipt=$sendreceipt\"";
800 $sendreceipt="";
650be221 801 if ($MDNDebug ) {
57257333 802 echo '<TR>' .
803 "<TD BGCOLOR=\"$color[9]\" ALIGN=RIGHT VALIGN=TOP>" .
804 _("Read receipt") . ': ' .
805 "</TD><TD BGCOLOR=\"$color[9]\" VALIGN=TOP colspan=2>" .
806 '<B>' .
807 _("send") .
808 "</B> <a href=$url>[" . _("Remove MDN flag") . '] </a>' .
809 '</TD>' .
810 '</TR>' . "\n";
811 } else {
812 echo '<TR>' .
813 "<TD BGCOLOR=\"$color[9]\" ALIGN=RIGHT VALIGN=TOP>" .
814 _("Read receipt") . ': ' .
815 "</TD><TD BGCOLOR=\"$color[9]\" VALIGN=TOP colspan=2>" .
816 '<B>'._("send").'</B>'.
817 '</TD>' .
818 '</TR>' . "\n";
819 }
820
821 } // when deleted or draft flag is set don't offer to send a MDN response
f69feefe 822 else if ( ereg('\\Draft',$read[0] || ereg('\\Deleted',$read[0])) ) {
57257333 823 echo '<TR>' .
824 "<TD BGCOLOR=\"$color[9]\" ALIGN=RIGHT VALIGN=TOP>" .
825 _("Read receipt") . ': '.
826 "</TD><TD BGCOLOR=\"$color[9]\" VALIGN=TOP colspan=2>" .
827 '<B>' . _("requested") . "</B>" .
828 '</TD>' .
829 '</TR>' . "\n";
830 }
831 // if no MDNsupport don't use the annoying popup messages
832 else if ( !$FirstTimeSee ) {
833 $sendreceipt = 'send';
834 $url = "\"read_body.php?mailbox=$mailbox&passed_id=$passed_id&startMessage=$startMessage&show_more=$show_more&sendreceipt=$sendreceipt\"";
835 echo '<TR>' .
836 "<TD BGCOLOR=\"$color[9]\" ALIGN=RIGHT VALIGN=TOP>" .
837 _("Read receipt") . ': ' .
838 "</TD><TD BGCOLOR=\"$color[9]\" VALIGN=TOP colspan=2>" .
839 '<B>' . _("requested") .
840 "</B> &nbsp; <a href=$url>[" . _("Send read receipt now") . "]</a>" .
841 '</TD>' .
842 '</TR>' . "\n";
843 $sendreceipt='';
844 }
845 else {
846 $sendreceipt = 'send';
847 $url = "\"read_body.php?mailbox=$mailbox&passed_id=$passed_id&startMessage=$startMessage&show_more=$show_more&sendreceipt=$sendreceipt\"";
848 if ($javascript_on) {
849 echo "<script language=\"javascript\"> \n" .
850 '<!-- ' . "\n" .
851 " if (window.confirm(\"" .
852 _("The message sender has requested a response to indicate that you have read this message. Would you like to send a receipt?") .
853 "\")) { \n" .
854 " window.location=($url); \n" .
855 ' window.reload()' . "\n" .
856 ' }' . "\n" .
857 '// -->' . "\n" .
858 '</script>' . "\n";
859 }
860 echo '<TR>' .
861 "<TD BGCOLOR=\"$color[9]\" ALIGN=RIGHT VALIGN=TOP>" .
862 _("Read receipt") . ': ' .
863 "</TD><TD BGCOLOR=\"$color[9]\" VALIGN=TOP colspan=2>" .
864 '<B>' . _("requested") . "&nbsp&nbsp</B><a href=$url>" . '[' .
865 _("Send read receipt now") . '] </a>' ." \n" .
866 '</TD>' .
867 '</TR>' . "\n";
868 $sendreceipt = '';
869 }
870 }
871
77b88425 872 if ( !isset( $sendreceipt ) || $sendreceipt == '' ) {
57257333 873 } else if ( $sendreceipt == 'send' ) {
874 if ( !$MDN_flag_present) {
875 if (isset($identity) ) {
77b88425 876 $final_recipient = getPref($data_dir, $username, 'email_address' . '0', '' );
877 } else {
878 $final_recipient = getPref($data_dir, $username, 'email_address', '' );
879 }
57257333 880
881 $final_recipient = trim($final_recipient);
882 if ($final_recipient == '' ) {
77b88425 883 $final_recipient = getPref($data_dir, $username, 'email_address', '' );
57257333 884 }
885
77b88425 886 if ( SendMDN( $MDN_to, $final_recipient ) > 0 && $supportMDN ) {
887 ToggleMDNflag( true);
57257333 888 }
889 }
890 $sendreceipt = 'removeMDN';
891 $url = "\"read_body.php?mailbox=$mailbox&passed_id=$passed_id&startMessage=$startMessage&show_more=$show_more&sendreceipt=$sendreceipt\"";
892 $sendreceipt="";
893
650be221 894 if ($MDNDebug && $supportMDN) {
57257333 895 echo " <TR>\n" .
896 " <TD BGCOLOR=\"$color[9]\" ALIGN=RIGHT VALIGN=TOP>\n" .
897 " "._("Read receipt").": \n".
898 " </TD><TD BGCOLOR=\"$color[9]\" VALIGN=TOP colspan=2>\n" .
899 ' <B>'._("send").'</B>'." <a href=$url>" . '[' . _("Remove MDN flag") . '] </a>' . "\n" .
900 ' </TD>' . "\n" .
901 ' </TR>' . "\n";
902 } else {
903 echo " <TR>\n" .
904 " <TD BGCOLOR=\"$color[9]\" ALIGN=RIGHT VALIGN=TOP>\n" .
905 " "._("Read receipt").": \n".
906 " </TD><TD BGCOLOR=\"$color[9]\" VALIGN=TOP colspan=2>\n" .
907 ' <B>'._("send").'</B>'. "\n" .
908 ' </TD>' . "\n" .
909 ' </TR>' . "\n";
910 }
911 }
912 elseif ($sendreceipt == 'removeMDN' ) {
913 ToggleMDNflag ( false );
914
915 $sendreceipt = 'send';
916 $url = "\"read_body.php?mailbox=$mailbox&passed_id=$passed_id&startMessage=$startMessage&show_more=$show_more&sendreceipt=$sendreceipt\"";
917 echo '<TR>'.
918 "<TD BGCOLOR=\"$color[9]\" ALIGN=RIGHT VALIGN=TOP>" .
919 _("Read receipt") . ': ' .
920 "</TD><TD BGCOLOR=\"$color[9]\" VALIGN=TOP colspan=2>" .
921 '<B>' . _("requested") .
922 "</B> &nbsp; <a href=$url>[" . _("Send read receipt now") . "]</a>" .
923 '</TD>' .
924 '</TR>' . "\n";
925 $sendreceipt = '';
926
927 }
928 }
929}
930
5be9f195 931do_hook('read_body_header');
57257333 932
a07cd1a4 933echo '</TABLE>' .
934 ' </TD></TR>' .
935 '</TABLE>';
936flush();
5be9f195 937
a07cd1a4 938echo "<TABLE CELLSPACING=0 WIDTH=\"97%\" BORDER=0 ALIGN=CENTER CELLPADDING=0>\n" .
939 " <TR><TD BGCOLOR=\"$color[4]\" WIDTH=\"100%\">\n" .
940 '<BR>'.
941 formatBody($imapConnection, $message, $color, $wrap_at).
942 '</TABLE>' .
943 '<TABLE CELLSPACING="0" WIDTH="100%" BORDER="0" ALIGN="CENTER" CELLPADDING="0">' . "\n" .
944 " <TR><TD BGCOLOR=\"$color[9]\">&nbsp;</TD></TR>" .
945 '</TABLE>' . "\n";
946
947/* show attached images inline -- if pref'fed so */
5be9f195 948if (($attachment_common_show_images) &&
a07cd1a4 949 is_array($attachment_common_show_images_list)) {
5be9f195 950
a07cd1a4 951 foreach ($attachment_common_show_images_list as $img) {
5be9f195 952 $imgurl = '../src/download.php' .
57257333 953 '?' .
cd7b8833 954 'passed_id=' . urlencode($img['passed_id']) .
955 '&mailbox=' . urlencode($mailbox) .
5be9f195 956 '&passed_ent_id=' . urlencode($img['ent_id']) .
957 '&absolute_dl=true';
958
a07cd1a4 959 echo "<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER>\n" .
57257333 960 '<TR>' .
961 '<TD>' .
962 "<img src=\"$imgurl\">\n" .
963 "</TD>\n" .
964 "</TR>\n" .
a07cd1a4 965 "</TABLE>\n";
5be9f195 966
10f0ce72 967 }
a07cd1a4 968}
969
5be9f195 970
a07cd1a4 971do_hook('read_body_bottom');
972do_hook('html_bottom');
973sqimap_logout($imapConnection);
974?>
975</body>
a7818e8e 976</html>