Fix for incorrect header in case of message/rfc822 attachments.
[squirrelmail.git] / src / printer_friendly_bottom.php
CommitLineData
f226cba7 1<?php
2
35586184 3/**
4 * printer_friendly_bottom.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 * with javascript on, it is the bottom frame of printer_friendly_main.php
10 * else, it is alone in a new window
11 *
12 * - this is the page that does all the work, really.
13 *
14 * $Id$
15 */
16
35586184 17require_once('../src/validate.php');
18require_once('../functions/strings.php');
19require_once('../config/config.php');
20require_once('../src/load_prefs.php');
21require_once('../functions/imap.php');
22require_once('../functions/page_header.php');
1c663478 23require_once('../functions/html.php');
f226cba7 24
32f4e318 25$pf_cleandisplay = getPref($data_dir, $username, 'pf_cleandisplay');
18680db6 26$mailbox = urldecode($mailbox);
27$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
28sqimap_mailbox_select($imapConnection, $mailbox);
29$message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
5caf2d0c 30$id = $passed_id;
31if (isset($passed_ent_id)) {
32 $message = $message->getEntity($passed_ent_id);
33}
34
32f4e318 35
36/* --start display setup-- */
37
5caf2d0c 38
32f4e318 39/* From and Date are usually fine as they are... */
18680db6 40$from = decodeHeader($message->header->getAddr_s('from'));
32f4e318 41$date = getLongDateString($message->header->date);
5caf2d0c 42$subject = trim(decodeHeader($message->header->subject));
32f4e318 43
44/* we can clean these up if the list is too long... */
18680db6 45$cc = decodeHeader($message->header->getAddr_s('cc'));
46$to = decodeHeader($message->header->getAddr_s('to'));
32f4e318 47
18680db6 48$ent_ar = $message->findDisplayEntity();
18680db6 49$body = '';
50if ($ent_ar[0] != '') {
51 for ($i = 0; $i < count($ent_ar); $i++) {
52 $body .= formatBody($imapConnection, $message, $color, $wrap_at, $ent_ar[$i], $passed_id, $mailbox);
5caf2d0c 53 $body .= '<hr noshade size=1>';
18680db6 54 }
55 $hookResults = do_hook('message_body', $body);
56 $body = $hookResults[1];
32f4e318 57} else {
18680db6 58 $body = _("Message not printable");
32f4e318 59}
3bbf5974 60
32f4e318 61 /* now, if they choose to, we clean up the display a bit... */
18680db6 62
32f4e318 63if ( empty($pf_cleandisplay) || $pf_cleandisplay != 'no' ) {
f226cba7 64
32f4e318 65 $num_leading_spaces = 9; // nine leading spaces for indentation
f226cba7 66
32f4e318 67 // sometimes I see ',,' instead of ',' seperating addresses *shrug*
68 $cc = pf_clean_string(str_replace(',,', ',', $cc), $num_leading_spaces);
69 $to = pf_clean_string(str_replace(',,', ',', $to), $num_leading_spaces);
f226cba7 70
32f4e318 71 // the body should have no leading zeros
5caf2d0c 72 // disabled because it destroys html mail
73
74// $body = pf_clean_string($body, 0);
f226cba7 75
32f4e318 76 // clean up everything else...
77 $subject = pf_clean_string($subject, $num_leading_spaces);
78 $from = pf_clean_string($from, $num_leading_spaces);
79 $date = pf_clean_string($date, $num_leading_spaces);
f226cba7 80
32f4e318 81} // end cleanup
18680db6 82
32f4e318 83// --end display setup--
f226cba7 84
f226cba7 85
32f4e318 86/* --start browser output-- */
87displayHtmlHeader( _("Printer Friendly"), '', FALSE );
f226cba7 88
32f4e318 89echo "<body text=\"$color[8]\" bgcolor=\"$color[4]\" link=\"$color[7]\" vlink=\"$color[7]\" alink=\"$color[7]\">\n" .
ae426785 90 /* headers (we use table because translations are not all the same width) */
1c663478 91 html_tag( 'table', '', '', '', 'width="100%" cellspacing="0" cellpadding="0" border="0"' ) .
92 html_tag( 'tr',
93 html_tag( 'td', _("From"), 'left' ) .
94 html_tag( 'td', htmlentities($from), 'left' )
95 ) . "\n" .
96 html_tag( 'tr',
97 html_tag( 'td', _("To"), 'left' ) .
98 html_tag( 'td', htmlentities($to), 'left' )
99 ) . "\n";
100 if ( strlen($cc) > 0 ) { /* only show CC: if it's there... */
101 echo html_tag( 'tr',
102 html_tag( 'td', _("CC"), 'left' ) .
103 html_tag( 'td', htmlentities($cc), 'left' )
104 );
105 }
106 echo html_tag( 'tr',
107 html_tag( 'td', _("Date"), 'left' ) .
108 html_tag( 'td', htmlentities($date), 'left' )
109 ) . "\n" .
110 html_tag( 'tr',
111 html_tag( 'td', _("Subject"), 'left' ) .
112 html_tag( 'td', htmlentities($subject), 'left' )
113 ) . "\n" .
114
115 /* body */
116 html_tag( 'tr',
117 html_tag( 'td', '<hr noshade size=1><br>' . "\n" . $body, 'left', '', 'colspan="2"' )
118 ) . "\n" .
119
120 '</table>' . "\n" .
121 '</body></html>';
f226cba7 122
32f4e318 123/* --end browser output-- */
f226cba7 124
f226cba7 125
32f4e318 126/* --start pf-specific functions-- */
f226cba7 127
32f4e318 128/* $string = pf_clean_string($string, 9); */
f226cba7 129function pf_clean_string ( $unclean_string, $num_leading_spaces ) {
130 global $data_dir, $username;
131
f6d2358f 132 $wrap_at = getPref($data_dir, $username, 'wrap_at', 86);
32f4e318 133 $wrap_at = $wrap_at - $num_leading_spaces; /* header stuff */
f226cba7 134
135 $leading_spaces = '';
136 while ( strlen($leading_spaces) < $num_leading_spaces )
137 $leading_spaces .= ' ';
138
139 $clean_string = '';
140 while ( strlen($unclean_string) > $wrap_at )
141 {
142 $this_line = substr($unclean_string, 0, $wrap_at);
32f4e318 143 if ( strrpos( $this_line, "\n" ) ) /* this should NEVER happen with anything but the $body */
f226cba7 144 {
145 $clean_string .= substr( $this_line, 0, strrpos( $this_line, "\n" ));
146 $clean_string .= $leading_spaces;
147 $unclean_string = substr($unclean_string, strrpos( $this_line, "\n" ));
148 }
149 else
150 {
151 $clean_string .= substr( $this_line, 0, strrpos( $this_line, ' ' ));
152 $clean_string .= "\n" . $leading_spaces;
153 $unclean_string = substr($unclean_string, (1+strrpos( $this_line, ' ' )));
154 }
155 }
32f4e318 156
f226cba7 157 $clean_string .= $unclean_string;
158
159 return $clean_string;
32f4e318 160} /* end pf_clean_string() function */
f226cba7 161
32f4e318 162/* --end pf-specific functions */
f226cba7 163
ae426785 164?>