Bugfix of long strings
[squirrelmail.git] / src / read_body.php
CommitLineData
59177427 1<?php
ef870322 2 /**
3 ** read_body.php
4 **
5 ** Copyright (c) 1999-2000 The SquirrelMail development team
6 ** Licensed under the GNU GPL. For full terms see the file COPYING.
7 **
8 ** This file is used for reading the msgs array and displaying
9 ** the resulting emails in the right frame.
245a6892 10 **
11 ** $Id$
ef870322 12 **/
13
ff8a98e7 14 require_once('../src/validate.php');
15 require_once('../functions/imap.php');
16 require_once('../functions/mime.php');
17 require_once('../functions/date.php');
18 require_once('../functions/url_parser.php');
f740c049 19
c36ed9cf 20 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
21 sqimap_mailbox_select($imapConnection, $mailbox);
e5a06719 22 do_hook('html_top');
c36ed9cf 23 displayPageHeader($color, $mailbox);
24
245a6892 25 if (isset($view_hdr)) {
56a19f1e 26 fputs ($imapConnection, sqimap_session_id() . " FETCH $passed_id BODY[HEADER]\r\n");
27 $read = sqimap_read_data ($imapConnection, sqimap_session_id(), true, $a, $b);
c36ed9cf 28
56a19f1e 29 echo '<br>' .
30 '<table width="100%" cellpadding="2" cellspacing="0" border="0" align="center">' . "\n" .
31 " <TR><TD BGCOLOR=\"$color[9]\" WIDTH=100%><center><b>" . _("Viewing full header") . '</b> - ';
cd928157 32 if (isset($where) && isset($what)) {
f4991a86 33 // Got here from a search
e5a06719 34 echo "<a href=\"read_body.php?mailbox=".urlencode($mailbox)."&passed_id=$passed_id&where=".urlencode($where)."&what=".urlencode($what).'">';
8ae331c2 35 } else {
f4991a86 36 echo "<a href=\"read_body.php?mailbox=".urlencode($mailbox)."&passed_id=$passed_id&startMessage=$startMessage&show_more=$show_more\">";
37 }
56a19f1e 38 echo ''._("View message") . "</a></b></center></td></tr></table>\n" .
39 "<table width=99% cellpadding=2 cellspacing=0 border=0 align=center>\n" .
40 '<tr><td>';
5c54e435 41
cd928157 42 $cnum = 0;
8dd0db0b 43 for ($i=1; $i < count($read); $i++) {
5c54e435 44 $line = htmlspecialchars($read[$i]);
172fd718 45 if (eregi("^&gt;", $line)) {
46 $second[$i] = $line;
e5a06719 47 $first[$i] = '&nbsp;';
172fd718 48 $cnum++;
49 } else if (eregi("^[ |\t]", $line)) {
50 $second[$i] = $line;
e5a06719 51 $first[$i] = '';
172fd718 52 } else if (eregi("^([^:]+):(.+)", $line, $regs)) {
e5a06719 53 $first[$i] = $regs[1] . ':';
172fd718 54 $second[$i] = $regs[2];
55 $cnum++;
5c54e435 56 } else {
172fd718 57 $second[$i] = trim($line);
e5a06719 58 $first[$i] = '';
c36ed9cf 59 }
172fd718 60 }
61 for ($i=0; $i < count($second); $i = $j) {
cd928157 62 if (isset($first[$i]))
63 $f = $first[$i];
64 if (isset($second[$i]))
65 $s = nl2br($second[$i]);
172fd718 66 $j = $i + 1;
e5a06719 67 while ($first[$j] == '' && $j < count($first)) {
68 $s .= '&nbsp;&nbsp;&nbsp;&nbsp;' . nl2br($second[$j]);
172fd718 69 $j++;
70 }
71 parseEmail($s);
cd928157 72 if (isset($f)) echo "<nobr><tt><b>$f</b>$s</tt></nobr>";
c36ed9cf 73 }
5c54e435 74 echo "</td></tr></table>\n";
e5a06719 75 echo '</body></html>';
eabc2883 76 sqimap_logout($imapConnection);
c36ed9cf 77 exit;
78 }
79
90033b64 80 // given an IMAP message id number, this will look it up in the cached and sorted msgs array and
81 // return the index. used for finding the next and previous messages
82
83 // returns the index of the next valid message from the array
84 function findNextMessage() {
5c54e435 85 global $msort, $currentArrayIndex, $msgs, $sort;
86
87 if ($sort == 6) {
88 if ($currentArrayIndex != 1) {
89 return $currentArrayIndex - 1;
90 }
91 } else {
92 for (reset($msort); ($key = key($msort)), (isset($key)); next($msort)) {
26f1e4f1 93 if ($currentArrayIndex == $msgs[$key]['ID']) {
5c54e435 94 next($msort);
95 $key = key($msort);
96 if (isset($key))
e5a06719 97 return $msgs[$key]['ID'];
5c54e435 98 }
99 }
100 }
90033b64 101 return -1;
102 }
103
d6043e29 104 // Removes just one address from the list of addresses
105 function RemoveAddress(&$addr_list, $addr) {
106 if ($addr == '')
107 return;
108 foreach (array_keys($addr_list, $addr) as $key_to_delete)
109 {
110 unset($addr_list[$key_to_delete]);
111 }
112 }
113
114
90033b64 115 // returns the index of the previous message from the array
116 function findPreviousMessage() {
97876814 117 global $msort, $currentArrayIndex, $sort, $msgs, $imapConnection,
118 $mailbox, $data_dir, $username;
5c54e435 119 if ($sort == 6) {
120 $numMessages = sqimap_get_num_messages($imapConnection, $mailbox);
121 if ($currentArrayIndex != $numMessages) {
122 return $currentArrayIndex + 1;
123 }
124 } else {
125 for (reset($msort); ($key = key($msort)), (isset($key)); next($msort)) {
e5a06719 126 if ($currentArrayIndex == $msgs[$key]['ID']) {
5c54e435 127 prev($msort);
128 $key = key($msort);
129 if (isset($key))
e5a06719 130 return $msgs[$key]['ID'];
5c54e435 131 }
132 }
133 }
90033b64 134 return -1;
135 }
136
137 if (isset($msgs)) {
8ae331c2 138 $currentArrayIndex = $passed_id;
53524fa0 139 /*
90033b64 140 for ($i=0; $i < count($msgs); $i++) {
141 if ($msgs[$i]["ID"] == $passed_id) {
142 $currentArrayIndex = $i;
143 break;
144 }
145 }
53524fa0 146 */
90033b64 147 } else {
148 $currentArrayIndex = -1;
149 }
150
1108e8bb 151 for ($i = 0; $i < count($msgs); $i++) {
e5a06719 152 if ($msgs[$i]['ID'] == $passed_id)
153 $msgs[$i]['FLAG_SEEN'] = true;
1108e8bb 154 }
155
f7fb20fe 156 // $message contains all information about the message
157 // including header and body
813eba2f 158 $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
d51894be 159
f7fb20fe 160 /** translate the subject and mailbox into url-able text **/
d51894be 161 $url_subj = urlencode(trim($message->header->subject));
8467bf00 162 $urlMailbox = urlencode($mailbox);
541506f3 163 $url_replyto = '';
164 if (isset($message->header->replyto))
165 $url_replyto = urlencode($message->header->replyto);
be69e508 166
541506f3 167 $url_replytoall = $url_replyto;
5bc39e3f 168
169 // If we are replying to all, then find all other addresses and
170 // add them to the list. Remove duplicates.
171 // This is somewhat messy, so I'll explain:
172 // 1) Take all addresses (from, to, cc) (avoid nasty join errors here)
173 $url_replytoall_extra_addrs = array_merge(array($message->header->from),
174 $message->header->to, $message->header->cc);
175
176 // 2) Make one big string out of them
177 $url_replytoall_extra_addrs = join(';', $url_replytoall_extra_addrs);
178
179 // 3) Parse that into an array of addresses
180 $url_replytoall_extra_addrs = parseAddrs($url_replytoall_extra_addrs);
181
182 // 4) Make them unique -- weed out duplicates
40023540 183 // (Coded for PHP 4.0.0)
184 $url_replytoall_extra_addrs =
f4405199 185 array_keys(array_flip($url_replytoall_extra_addrs));
5bc39e3f 186
187 // 5) Remove the addresses we'll be sending the message 'to'
541506f3 188 $url_replytoall_avoid_addrs = '';
bbcafebd 189 if (isset($message->header->replyto)) {
541506f3 190 $url_replytoall_avoid_addrs = $message->header->replyto;
bbcafebd 191 }
192
541506f3 193 $url_replytoall_avoid_addrs = parseAddrs($url_replytoall_avoid_addrs);
bbcafebd 194 foreach ($url_replytoall_avoid_addrs as $addr) {
d6043e29 195 RemoveAddress($url_replytoall_extra_addrs, $addr);
196 }
197
198 // 6) Remove our identities from the CC list (they still can be in the
bbcafebd 199 // TO list) only if $include_self_reply_all is turned off
200 if (!$include_self_reply_all) {
a13cf243 201 RemoveAddress($url_replytoall_extra_addrs,
202 getPref($data_dir, $username, 'email_address'));
203 $idents = getPref($data_dir, $username, 'identities');
bbcafebd 204 if ($idents != '' && $idents > 1) {
205 for ($i = 1; $i < $idents; $i ++) {
a13cf243 206 RemoveAddress($url_replytoall_extra_addrs,
207 getPref($data_dir, $username, 'email_address' .
208 $i));
209 }
5bc39e3f 210 }
a13cf243 211 }
5bc39e3f 212
d6043e29 213 // 7) Smoosh back into one nice line
5bc39e3f 214 $url_replytoallcc = getLineOfAddrs($url_replytoall_extra_addrs);
215
d6043e29 216 // 8) urlencode() it
b676ba7e 217 $url_replytoallcc = urlencode($url_replytoallcc);
4bfed9f3 218
8beafbbc 219 $dateString = getLongDateString($message->header->date);
3ae6e629 220
221 // What do we reply to -- text only, if possible
429f8906 222 $ent_num = findDisplayEntity($message);
31f3d7c0 223
b581fa60 224 /** TEXT STRINGS DEFINITIONS **/
225 $echo_more = _("more");
226 $echo_less = _("less");
227
e788294e 228 if (!isset($show_more_cc)) $show_more_cc = false;
229
078a40a4 230 /** FORMAT THE TO STRING **/
2844086d 231 $i = 0;
e5a06719 232 $to_string = '';
8beafbbc 233 $to_ary = $message->header->to;
2844086d 234 while ($i < count($to_ary)) {
99fa2b21 235 $to_ary[$i] = htmlspecialchars(decodeHeader($to_ary[$i]));
be8e07f8 236
2844086d 237 if ($to_string)
238 $to_string = "$to_string<BR>$to_ary[$i]";
239 else
240 $to_string = "$to_ary[$i]";
241
242 $i++;
243 if (count($to_ary) > 1) {
244 if ($show_more == false) {
245 if ($i == 1) {
30833080 246 if (isset($where) && isset($what)) {
f4991a86 247 // from a search
248 $to_string = "$to_string&nbsp;(<A HREF=\"read_body.php?mailbox=$urlMailbox&passed_id=$passed_id&where=".urlencode($where)."&what=".urlencode($what)."&show_more=1&show_more_cc=$show_more_cc\">$echo_more</A>)";
249 } else {
250 $to_string = "$to_string&nbsp;(<A HREF=\"read_body.php?mailbox=$urlMailbox&passed_id=$passed_id&sort=$sort&startMessage=$startMessage&show_more=1&show_more_cc=$show_more_cc\">$echo_more</A>)";
251 }
2844086d 252 $i = count($to_ary);
253 }
254 } else if ($i == 1) {
30833080 255 if (isset($where) && isset($what)) {
f4991a86 256 // from a search
257 $to_string = "$to_string&nbsp;(<A HREF=\"read_body.php?mailbox=$urlMailbox&passed_id=$passed_id&where=".urlencode($where)."&what=".urlencode($what)."&show_more=0&show_more_cc=$show_more_cc\">$echo_less</A>)";
258 } else {
259 $to_string = "$to_string&nbsp;(<A HREF=\"read_body.php?mailbox=$urlMailbox&passed_id=$passed_id&sort=$sort&startMessage=$startMessage&show_more=0&show_more_cc=$show_more_cc\">$echo_less</A>)";
260 }
2844086d 261 }
262 }
263 }
264
078a40a4 265 /** FORMAT THE CC STRING **/
266 $i = 0;
e7681707 267 if (isset ($message->header->cc[0]) && trim($message->header->cc[0])){
268 $cc_string = "";
269 $cc_ary = $message->header->cc;
270 while ($i < count(decodeHeader($cc_ary))) {
271 $cc_ary[$i] = htmlspecialchars($cc_ary[$i]);
272 if ($cc_string)
273 $cc_string = "$cc_string<BR>$cc_ary[$i]";
274 else
275 $cc_string = "$cc_ary[$i]";
276
277 $i++;
278 if (count($cc_ary) > 1) {
279 if ($show_more_cc == false) {
280 if ($i == 1) {
30833080 281 if (isset($where) && isset($what)) {
e7681707 282 // from a search
283 $cc_string = "$cc_string&nbsp;(<A HREF=\"read_body.php?mailbox=$urlMailbox&passed_id=$passed_id&what=".urlencode($what)."&where=".urlencode($where)."&show_more_cc=1&show_more=$show_more\">$echo_more</A>)";
284 } else {
285 $cc_string = "$cc_string&nbsp;(<A HREF=\"read_body.php?mailbox=$urlMailbox&passed_id=$passed_id&sort=$sort&startMessage=$startMessage&show_more_cc=1&show_more=$show_more\">$echo_more</A>)";
286 }
287 $i = count($cc_ary);
288 }
289 } else if ($i == 1) {
30833080 290 if (isset($where) && isset($what)) {
f4991a86 291 // from a search
e7681707 292 $cc_string = "$cc_string&nbsp;(<A HREF=\"read_body.php?mailbox=$urlMailbox&passed_id=$passed_id&what=".urlencode($what)."&where=".urlencode($where)."&show_more_cc=0&show_more=$show_more\">$echo_less</A>)";
f4991a86 293 } else {
e7681707 294 $cc_string = "$cc_string&nbsp;(<A HREF=\"read_body.php?mailbox=$urlMailbox&passed_id=$passed_id&sort=$sort&startMessage=$startMessage&show_more_cc=0&show_more=$show_more\">$echo_less</A>)";
f4991a86 295 }
078a40a4 296 }
078a40a4 297 }
298 }
299 }
853b543d 300 /** FORMAT THE BCC STRING **/
301 $i = 0;
302 if (isset ($message->header->bcc[0]) && trim($message->header->bcc[0])){
303 $bcc_string = "";
304 $bcc_ary = $message->header->bcc;
305 while ($i < count(decodeHeader($bcc_ary))) {
306 $bcc_ary[$i] = htmlspecialchars($bcc_ary[$i]);
307 if ($bcc_string)
308 $bcc_string = "$bcc_string<BR>$bcc_ary[$i]";
309 else
310 $bcc_string = "$bcc_ary[$i]";
311
312 $i++;
313 if (count($bcc_ary) > 1) {
314 if ($show_more_cc == false) {
315 if ($i == 1) {
316 if (isset($where) && isset($what)) {
317 // from a search
318 $bcc_string = "$bcc_string&nbsp;(<A HREF=\"read_body.php?mailbox=$urlMailbox&passed_id=$passed_id&what=".urlencode($what)."&where=".urlencode($where)."&show_more_cc=1&show_more=$show_more\">$echo_more</A>)";
319 } else {
320 $bcc_string = "$bcc_string&nbsp;(<A HREF=\"read_body.php?mailbox=$urlMailbox&passed_id=$passed_id&sort=$sort&startMessage=$startMessage&show_more_cc=1&show_more=$show_more\">$echo_more</A>)";
321 }
322 $i = count($bcc_ary);
323 }
324 } else if ($i == 1) {
325 if (isset($where) && isset($what)) {
326 // from a search
327 $bcc_string = "$bcc_string&nbsp;(<A HREF=\"read_body.php?mailbox=$urlMailbox&passed_id=$passed_id&what=".urlencode($what)."&where=".urlencode($where)."&show_more_cc=0&show_more=$show_more\">$echo_less</A>)";
328 } else {
329 $bcc_string = "$bcc_string&nbsp;(<A HREF=\"read_body.php?mailbox=$urlMailbox&passed_id=$passed_id&sort=$sort&startMessage=$startMessage&show_more_cc=0&show_more=$show_more\">$echo_less</A>)";
330 }
331 }
332 }
333 }
334 }
020abcf3 335
336 if($default_use_priority) {
337 switch(substr($message->header->priority,0,1)) {
338 case "1" : $priority_string = _("High");
339 break;
340 case "3" : $priority_string = _("Normal");
341 break;
342 case "5" : $priority_string = _("Low");
343 break;
344 }
345 }
f7fb20fe 346 /** make sure everything will display in HTML format **/
8beafbbc 347 $from_name = decodeHeader(htmlspecialchars($message->header->from));
7aaa81fc 348 $subject = decodeHeader(htmlspecialchars($message->header->subject));
078a40a4 349
e5a06719 350 do_hook('read_body_top');
56a19f1e 351 echo '<BR>' .
352 '<TABLE CELLSPACING="0" WIDTH="100%" BORDER="0" ALIGN="CENTER" CELLPADDING="0">' . "\n" .
f7b1b3b1 353 ' <TR><TD BGCOLOR="' . $color[9] . '" WIDTH="100%">' . "\n" .
354 ' <TABLE WIDTH="100%" CELLSPACING="0" BORDER="0" CELLPADDING="3">' . "\n" .
355 ' <TR>' . "\n" .
356 ' <TD ALIGN="LEFT" WIDTH="33%">' . "\n" .
357 ' <SMALL>' . "\n";
1809bad8 358 if ($where && $what) {
359 echo " <A HREF=\"search.php?where=".urlencode($where)."&what=".urlencode($what)."&mailbox=$urlMailbox\">";
360 } else {
361 echo " <A HREF=\"right_main.php?use_mailbox_cache=1&sort=$sort&startMessage=$startMessage&mailbox=$urlMailbox\">";
362 }
b581fa60 363 echo _("Message List");
e5a06719 364 echo '</A>&nbsp;|&nbsp;';
1809bad8 365 if ($where && $what) {
e5a06719 366 echo " <A HREF=\"delete_message.php?mailbox=$urlMailbox&message=$passed_id&where=".urlencode($where)."&what=".urlencode($what).'">';
1809bad8 367 } else {
d36f3e63 368 echo " <A HREF=\"delete_message.php?mailbox=$urlMailbox&message=$passed_id&sort=$sort&startMessage=$startMessage\">";
1809bad8 369 }
f7b1b3b1 370 echo _("Delete") . '</A>&nbsp;';
00b49b9e 371 if (($mailbox == $draft_folder) && ($save_as_draft)) {
372 echo '|&nbsp;';
0eed445e 373 echo " <A HREF=\"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\">";
f7b1b3b1 374 echo _("Resume Draft") . '</a>';
00b49b9e 375 }
376 echo '&nbsp;&nbsp;' .
56a19f1e 377 ' </SMALL>' .
378 ' </TD><TD WIDTH="33%" ALIGN="CENTER">' .
379 ' <SMALL>' . "\n";
f7b1b3b1 380
1809bad8 381 if ($where && $what) {
90033b64 382 } else {
1809bad8 383 if ($currentArrayIndex == -1) {
e5a06719 384 echo 'Previous&nbsp;|&nbsp;Next';
1809bad8 385 } else {
386 $prev = findPreviousMessage();
387 $next = findNextMessage();
388 if ($prev != -1)
389 echo "<a href=\"read_body.php?passed_id=$prev&mailbox=$urlMailbox&sort=$sort&startMessage=$startMessage&show_more=0\">" . _("Previous") . "</A>&nbsp;|&nbsp;";
390 else
e5a06719 391 echo _("Previous") . '&nbsp;|&nbsp;';
1809bad8 392 if ($next != -1)
393 echo "<a href=\"read_body.php?passed_id=$next&mailbox=$urlMailbox&sort=$sort&startMessage=$startMessage&show_more=0\">" . _("Next") . "</A>";
394 else
395 echo _("Next");
396 }
397 }
56a19f1e 398 echo ' </SMALL>' . "\n" .
399 ' </TD><TD WIDTH="33%" ALIGN="RIGHT">' .
400 ' <SMALL>' .
401 " <A HREF=\"compose.php?forward_id=$passed_id&forward_subj=$url_subj&mailbox=$urlMailbox&ent_num=$ent_num\">" .
402 _("Forward") .
403 '</A>&nbsp;|&nbsp;' .
404 " <A HREF=\"compose.php?send_to=$url_replyto&reply_subj=$url_subj&reply_id=$passed_id&mailbox=$urlMailbox&ent_num=$ent_num\">" .
405 _("Reply") .
406 '</A>&nbsp;|&nbsp;' .
407 " <A HREF=\"compose.php?send_to=$url_replytoall&send_to_cc=$url_replytoallcc&reply_subj=$url_subj&reply_id=$passed_id&mailbox=$urlMailbox&ent_num=$ent_num\">" .
408 _("Reply All") .
409 '</A>&nbsp;&nbsp;' .
410 ' </SMALL>' .
411 ' </TD>' .
412 ' </TR>' .
413 ' </TABLE>' .
414 ' </TD></TR>' .
415 ' <TR><TD CELLSPACING="0" WIDTH="100%">' .
416 ' <TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="3">' . "\n" .
417 ' <TR>' . "\n" .
be69e508 418 /** subject **/
56a19f1e 419 " <TD BGCOLOR=\"$color[0]\" WIDTH=\"10%\" ALIGN=\"right\" VALIGN=\"top\">\n" .
420 _("Subject:") .
421 " </TD><TD BGCOLOR=\"$color[0]\" WIDTH=\"80%\" VALIGN=\"top\">\n" .
422 " <B>$subject</B>&nbsp;\n" .
423 " </TD>\n" .
424 ' <TD ROWSPAN="4" width=10% BGCOLOR="'.$color[0].'" ALIGN=right VALIGN=top NOWRAP><small>' . "\n";
f4991a86 425 if ($where && $what) {
426 // Got here from a search
d7e6f0c4 427 echo "<a href=\"read_body.php?mailbox=$urlMailbox&passed_id=$passed_id&where=".urlencode($where)."&what=".urlencode($what)."&view_hdr=1\">" . _("View full header") . "</a>\n";
9736fafe 428 } else {
d7e6f0c4 429 echo "<a href=\"read_body.php?mailbox=$urlMailbox&passed_id=$passed_id&startMessage=$startMessage&show_more=$show_more&view_hdr=1\">" . _("View full header") . "</a>\n";
f4991a86 430 }
9736fafe 431 do_hook("read_body_header_right");
56a19f1e 432 echo '</small></TD>' . "\n" .
433 ' </TR>' ."\n" .
be69e508 434 /** from **/
56a19f1e 435 ' <TR>' . "\n" .
436 ' <TD BGCOLOR="' . $color[0] . '" ALIGN="RIGHT">' . "\n" .
437 _("From:") .
438 ' </TD><TD BGCOLOR="' . $color[0] . '">' . "\n" .
439 " <B>$from_name</B>&nbsp;\n" .
440 ' </TD>' . "\n" .
441 ' </TR>' . "\n" .
be69e508 442 /** date **/
56a19f1e 443 ' <TR>' . "\n" .
444 ' <TD BGCOLOR="' . $color[0] . '" ALIGN="RIGHT">' . "\n" .
445 _("Date:") .
446 " </TD><TD BGCOLOR=\"$color[0]\">\n" .
447 " <B>$dateString</B>&nbsp;\n" .
448 ' </TD>' . "\n" .
449 ' </TR>' . "\n" .
2844086d 450 /** to **/
56a19f1e 451 " <TR>\n" .
452 " <TD BGCOLOR=\"$color[0]\" ALIGN=RIGHT VALIGN=TOP>\n" .
453 _("To:") .
454 ' </TD><TD BGCOLOR="' . $color[0] . '" VALIGN="TOP">' . "\n" .
455 " <B>$to_string</B>&nbsp;\n" .
456 ' </TD>' . "\n" .
457 ' </TR>' . "\n";
078a40a4 458 /** cc **/
e7681707 459 if (isset($cc_string)) {
56a19f1e 460 echo " <TR>\n" .
461 " <TD BGCOLOR=\"$color[0]\" ALIGN=RIGHT VALIGN=TOP>\n" .
462 ' Cc:' . "\n" .
463 " </TD><TD BGCOLOR=\"$color[0]\" VALIGN=TOP colspan=2>\n" .
464 " <B>$cc_string</B>&nbsp;\n" .
465 ' </TD>' . "\n" .
466 ' </TR>' . "\n";
078a40a4 467 }
853b543d 468 /** bcc **/
469 if (isset($bcc_string)) {
470 echo " <TR>\n" .
471 " <TD BGCOLOR=\"$color[0]\" ALIGN=RIGHT VALIGN=TOP>\n" .
472 ' Bcc:' . "\n" .
473 " </TD><TD BGCOLOR=\"$color[0]\" VALIGN=TOP colspan=2>\n" .
474 " <B>$bcc_string</B>&nbsp;\n" .
475 ' </TD>' . "\n" .
476 ' </TR>' . "\n";
477 }
020abcf3 478 if ($default_use_priority) {
479 if (isset($priority_string)) {
480 echo " <TR>\n" .
481 " <TD BGCOLOR=\"$color[0]\" ALIGN=RIGHT VALIGN=TOP>\n" .
482 " "._("Priority").": \n".
483 " </TD><TD BGCOLOR=\"$color[0]\" VALIGN=TOP colspan=2>\n" .
484 " <B>$priority_string</B>&nbsp;\n" .
485 " </TD>" . "\n" .
486 " </TR>" . "\n";
487 }
488 }
9ab0d96f 489 if ($show_xmailer_default) {
490 fputs ($imapConnection, sqimap_session_id() .
491 " FETCH $passed_id BODY.PEEK[HEADER.FIELDS (X-Mailer)]\r\n");
492 $read = sqimap_read_data ($imapConnection, sqimap_session_id(), true,
493 $response, $readmessage);
494 $mailer = substr($read[1], strpos($read[1], " "));
495 if (trim($mailer)) {
496 echo " <TR>\n" .
497 " <TD BGCOLOR=\"$color[0]\" ALIGN=RIGHT VALIGN=TOP>\n" .
498 " "._("Mailer").": \n".
499 " </TD><TD BGCOLOR=\"$color[0]\" VALIGN=TOP colspan=2>\n" .
500 " <B>$mailer</B>&nbsp;\n" .
501 " </TD>" . "\n" .
502 " </TR>" . "\n";
503 }
504 }
505
cc24badd 506 do_hook("read_body_header");
56a19f1e 507 echo '</TABLE>' .
508 ' </TD></TR>' .
f2ac56af 509 '</table>';
510 flush();
511 echo "<TABLE CELLSPACING=0 WIDTH=97% BORDER=0 ALIGN=CENTER CELLPADDING=0>\n" .
56a19f1e 512 " <TR><TD BGCOLOR=\"$color[4]\" WIDTH=100%>\n" .
513 '<BR>';
9297917e 514
515 $body = formatBody($imapConnection, $message, $color, $wrap_at);
5c55c295 516
56a19f1e 517 echo $body .
518 '</TABLE>' .
519 '<TABLE CELLSPACING="0" WIDTH="100%" BORDER="0" ALIGN="CENTER" CELLPADDING="0">' . "\n" .
520 " <TR><TD BGCOLOR=\"$color[9]\">&nbsp;</TD></TR>" .
521 '</TABLE>' . "\n";
be69e508 522
7baf86a9 523 /* show attached images inline -- if pref'fed so */
524
525 if (($attachment_common_show_images) and
526 is_array($attachment_common_show_images_list)) {
527 foreach ($attachment_common_show_images_list as $img) {
528 echo "<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER>\n" .
529 " <TR>\n" .
530 " <TD>\n" .
531 ' <img src="../src/download.php' .
532 '?passed_id=' . urlencode($img['passed_id']) .
533 '&mailbox=' . urlencode($img['mailbox']) .
534 '&passed_ent_id=' . urlencode($img['ent_id']) .
535 '&absolute_dl=true">' . "\n" .
536 " </TD>\n" .
537 " </TR>\n" .
538 "</TABLE>\n";
539 }
540 }
541
e5a06719 542 do_hook('read_body_bottom');
543 do_hook('html_bottom');
1195c340 544 sqimap_logout($imapConnection);
00b49b9e 545?>