removed test code
[squirrelmail.git] / src / download.php
1 <?php
2
3 /**
4 * download.php
5 *
6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Handles attachment downloads to the users computer.
10 * Also allows displaying of attachments when possible.
11 *
12 * $Id$
13 */
14
15 require_once('../src/validate.php');
16 require_once('../functions/imap.php');
17 require_once('../functions/mime.php');
18
19 header('Pragma: ');
20 header('Cache-Control: cache');
21
22 function get_extract_to_target_list($imapConnection) {
23 $boxes = sqimap_mailbox_list($imapConnection);
24 for ($i = 0; $i < count($boxes); $i++) {
25 if (!in_array('noselect', $boxes[$i]['flags'])) {
26 $box = $boxes[$i]['unformatted'];
27 $box2 = str_replace(' ', '&nbsp;', $boxes[$i]['unformatted-disp']);
28 if ( $box2 == 'INBOX' ) {
29 $box2 = _("INBOX");
30 }
31 echo "<option value=\"$box\">$box2</option>\n";
32 }
33 }
34 }
35 $mailbox = decodeHeader($mailbox);
36
37 global $messages, $uid_support;
38
39 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
40 $mbx_response = sqimap_mailbox_select($imapConnection, $mailbox);
41 if (!isset($passed_ent_id)) {
42 $passed_ent_id = '';
43 }
44
45 $message = &$messages[$mbx_response['UIDVALIDITY']]["$passed_id"];
46 $subject = $message->rfc822_header->subject;
47 $message = &$message->getEntity($ent_id);
48 $header = $message->header;
49 if ($message->rfc822_header) {
50 $subject = $message->rfc822_header->subject;
51 $charset = $header->content_type->properties['charset'];
52 } else {
53 $header = $message->header;
54 $charset = $header->getParameter('charset');
55 }
56 $type0 = $header->type0;
57 $type1 = $header->type1;
58 $encoding = strtolower($header->encoding);
59
60 /*
61 $extracted = false;
62 if (isset($extract_message) && $extract_message) {
63 $cmd = "FETCH $passed_id BODY[$passed_ent_id]";
64 $read = sqimap_run_command ($imapConnection, $cmd, true, $response, $message, $uid_support);
65 $cnt = count($read);
66 $body = '';
67 $length = 0;
68 for ($i=1;$i<$cnt;$i++) {
69 $length = $length + strlen($read[$i]);
70 $body .= $read[$i];
71 }
72 if (isset($targetMailbox) && $length>0) {
73 sqimap_append ($imapConnection, $targetMailbox, $length);
74 fputs($imapConnection,$body);
75 sqimap_append_done ($imapConnection);
76 $extracted = true;
77 }
78 }
79
80
81 */
82 /*
83 * lets redefine message as this particular entity that we wish to display.
84 * it should hold only the header for this entity. We need to fetch the body
85 * yet before we can display anything.
86 */
87
88 if (isset($override_type0)) {
89 $type0 = $override_type0;
90 }
91 if (isset($override_type1)) {
92 $type1 = $override_type1;
93 }
94 $filename = '';
95 if (is_object($message->header->disposition)) {
96 $filename = decodeHeader($header->disposition->getProperty('filename'));
97 if (!$filename) {
98 $filename = decodeHeader($header->disposition->getProperty('name'));
99 }
100 }
101 if (strlen($filename) < 1) {
102 if ($type1 == 'plain' && $type0 == 'text') {
103 $suffix = 'txt';
104 $filename = $subject . '.txt';
105 } else if ($type1 == 'richtext' && $type0 == 'text') {
106 $suffix = 'rtf';
107 $filename = $subject . '.rtf';
108 } else if ($type1 == 'postscript' && $type0 == 'application') {
109 $suffix = 'ps';
110 $filename = $subject . '.ps';
111 } else if ($type1 == 'rfc822' && $type0 == 'message') {
112 $suffix = 'eml';
113 $filename = $subject . '.msg';
114 } else {
115 $suffix = $type1;
116 }
117
118 if (strlen($filename) < 1) {
119 $filename = "untitled$ent_id.$suffix";
120 } else {
121 $filename = "$filename.$suffix";
122 }
123 }
124
125 /*
126 * Note:
127 * The following sections display the attachment in different
128 * ways depending on how they choose. The first way will download
129 * under any circumstance. This sets the Content-type to be
130 * applicatin/octet-stream, which should be interpreted by the
131 * browser as "download me".
132 * The second method (view) is used for images or other formats
133 * that should be able to be handled by the browser. It will
134 * most likely display the attachment inline inside the browser.
135 * And finally, the third one will be used by default. If it
136 * is displayable (text or html), it will load them up in a text
137 * viewer (built in to squirrelmail). Otherwise, it sets the
138 * content-type as application/octet-stream
139 */
140 if (isset($absolute_dl) && $absolute_dl == 'true') {
141 DumpHeaders($type0, $type1, $filename, 1);
142 } else {
143 DumpHeaders($type0, $type1, $filename, 0);
144 }
145 /* be aware that any warning caused by download.php will corrupt the
146 * attachment in case of ERROR reporting = E_ALL and the output is the screen */
147 mime_print_body_lines ($imapConnection, $passed_id, $ent_id, $encoding);
148
149 /*
150 * This function is verified to work with Netscape and the *very latest*
151 * version of IE. I don't know if it works with Opera, but it should now.
152 */
153 function DumpHeaders($type0, $type1, $filename, $force) {
154 global $HTTP_USER_AGENT;
155 $isIE = 0;
156
157 if (strstr($HTTP_USER_AGENT, 'compatible; MSIE ') !== false &&
158 strstr($HTTP_USER_AGENT, 'Opera') === false) {
159 $isIE = 1;
160 }
161
162 if (strstr($HTTP_USER_AGENT, 'compatible; MSIE 6') !== false &&
163 strstr($HTTP_USER_AGENT, 'Opera') === false) {
164 $isIE6 = 1;
165 }
166
167 $filename = ereg_replace('[^-a-zA-Z0-9\.]', '_', $filename);
168
169 // A Pox on Microsoft and it's Office!
170 if (! $force) {
171 // Try to show in browser window
172 header("Content-Disposition: inline; filename=\"$filename\"");
173 header("Content-Type: $type0/$type1; name=\"$filename\"");
174 } else {
175 // Try to pop up the "save as" box
176 // IE makes this hard. It pops up 2 save boxes, or none.
177 // http://support.microsoft.com/support/kb/articles/Q238/5/88.ASP
178 // But, accordint to Microsoft, it is "RFC compliant but doesn't
179 // take into account some deviations that allowed within the
180 // specification." Doesn't that mean RFC non-compliant?
181 // http://support.microsoft.com/support/kb/articles/Q258/4/52.ASP
182 //
183 // The best thing you can do for IE is to upgrade to the latest
184 // version
185 if ($isIE && !isset($isIE6)) {
186 // http://support.microsoft.com/support/kb/articles/Q182/3/15.asp
187 // Do not have quotes around filename, but that applied to
188 // "attachment"... does it apply to inline too?
189 //
190 // This combination seems to work mostly. IE 5.5 SP 1 has
191 // known issues (see the Microsoft Knowledge Base)
192 header("Content-Disposition: inline; filename=$filename");
193
194 // This works for most types, but doesn't work with Word files
195 header("Content-Type: application/download; name=\"$filename\"");
196
197 // These are spares, just in case. :-)
198 //header("Content-Type: $type0/$type1; name=\"$filename\"");
199 //header("Content-Type: application/x-msdownload; name=\"$filename\"");
200 //header("Content-Type: application/octet-stream; name=\"$filename\"");
201 } else {
202 header("Content-Disposition: attachment; filename=\"$filename\"");
203 // application/octet-stream forces download for Netscape
204 header("Content-Type: application/octet-stream; name=\"$filename\"");
205 }
206 }
207 }
208 ?>