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