header->from); $date = getLongDateString($message->header->date); // we can clean these up if the list is too long... $cc = decodeHeader(getLineOfAddrs($message->header->cc)); $to = decodeHeader(getLineOfAddrs($message->header->to)); // and Body and Subject could easily stream off the page... $body = mime_fetch_body($imap_stream, $passed_id, $passed_ent_id); $body = str_replace("\n", "\n", trim(decodeBody($body, $message->header->encoding))); $subject = trim(decodeHeader($message->header->subject)); // now, if they choose to, we clean up the display a bit... if ( empty($pf_cleandisplay) || $pf_cleandisplay != 'no' ) { $num_leading_spaces = 9; // nine leading spaces for indentation // sometimes I see ',,' instead of ',' seperating addresses *shrug* $cc = pf_clean_string(str_replace(',,', ',', $cc), $num_leading_spaces); $to = pf_clean_string(str_replace(',,', ',', $to), $num_leading_spaces); // the body should have no leading zeros $body = pf_clean_string($body, 0); // clean up everything else... $subject = pf_clean_string($subject, $num_leading_spaces); $from = pf_clean_string($from, $num_leading_spaces); $date = pf_clean_string($date, $num_leading_spaces); } // end cleanup // --end display setup-- // --start browser output-- displayHtmlHeader( _("Printer Friendly"), '', FALSE ); echo "\n" . // headers (we use table becasue translations are not all the same width) ''. '\n". '\n"; if ( strlen($cc) > 0 ) { // only show CC: if it's there... echo '\n"; } echo '\n". '\n". '
' . _("From") . ':' . htmlentities($from) . "
' . _("To") . ':' . htmlentities($to) . "
' . _("CC") . ':' . htmlentities($cc) . "
' . _("Date") . ':' . htmlentities($date) . "
' . _("Subject") . ':' . htmlentities($subject) . "
'. "\n
";


     // body
    echo "
\n"; echo htmlentities($body); // --end browser output-- ?>
$wrap_at ) { $this_line = substr($unclean_string, 0, $wrap_at); if ( strrpos( $this_line, "\n" ) ) // this should NEVER happen with anything but the $body { $clean_string .= substr( $this_line, 0, strrpos( $this_line, "\n" )); $clean_string .= $leading_spaces; $unclean_string = substr($unclean_string, strrpos( $this_line, "\n" )); } else { $clean_string .= substr( $this_line, 0, strrpos( $this_line, ' ' )); $clean_string .= "\n" . $leading_spaces; $unclean_string = substr($unclean_string, (1+strrpos( $this_line, ' ' ))); } } $clean_string .= $unclean_string; return $clean_string; } // end pf_clean_string() function // --end pf-specific functions ?>