91de332ef3e52c7179709b629a98a3c441edce3a
6 * Copyright (c) 1999-2005 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
9 * Handles attachment downloads to the users computer.
10 * Also allows displaying of attachments when possible.
13 * @package squirrelmail
17 * Path for SquirrelMail required files.
20 define('SM_PATH','../');
22 /* SquirrelMail required files. */
23 require_once(SM_PATH
. 'include/validate.php');
24 require_once(SM_PATH
. 'functions/imap.php');
25 require_once(SM_PATH
. 'functions/mime.php');
28 header('Cache-Control: cache');
31 sqgetGlobalVar('key', $key, SQ_COOKIE
);
32 sqgetGlobalVar('username', $username, SQ_SESSION
);
33 sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION
);
34 sqgetGlobalVar('mailbox_cache',$mailbox_cache,SQ_SESSION
);
35 sqgetGlobalVar('messages', $messages, SQ_SESSION
);
36 sqgetGlobalVar('mailbox', $mailbox, SQ_GET
);
37 sqgetGlobalVar('ent_id', $ent_id, SQ_GET
);
38 sqgetGlobalVar('absolute_dl',$absolute_dl, SQ_GET
);
39 if ( sqgetGlobalVar('passed_id', $temp, SQ_GET
) ) {
40 $passed_id = (int) $temp;
42 if (!sqgetGlobalVar('account', $account, SQ_GET
) ) {
46 global $default_charset;
51 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
52 $aMailbox = sqm_api_mailbox_select($imapConnection, $account, $mailbox,array(),array());
54 if (isset($aMailbox['MSG_HEADERS'][$passed_id]['MESSAGE_OBJECT']) &&
55 is_object($aMailbox['MSG_HEADERS'][$passed_id]['MESSAGE_OBJECT']) ) {
56 $message = $aMailbox['MSG_HEADERS'][$passed_id]['MESSAGE_OBJECT'];
58 $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
59 $aMailbox['MSG_HEADERS'][$passed_id]['MESSAGE_OBJECT'] = $message;
62 //$mbx_response = sqimap_mailbox_select($imapConnection, $mailbox);
64 //$message = &$messages[$mbx_response['UIDVALIDITY']]["$passed_id"];
65 //if (!is_object($message)) {
66 // $message = sqimap_get_message($imapConnection,$passed_id, $mailbox);
68 $subject = $message->rfc822_header
->subject
;
70 $message = &$message->getEntity($ent_id);
71 $header = $message->header
;
73 if ($message->rfc822_header
) {
74 $subject = $message->rfc822_header
->subject
;
76 $header = $message->header
;
78 $type0 = $header->type0
;
79 $type1 = $header->type1
;
80 $encoding = strtolower($header->encoding
);
85 $encoding = 'US-ASCII';
86 $header = $message->header
;
90 * lets redefine message as this particular entity that we wish to display.
91 * it should hold only the header for this entity. We need to fetch the body
92 * yet before we can display anything.
95 if (isset($override_type0)) {
96 $type0 = $override_type0;
98 if (isset($override_type1)) {
99 $type1 = $override_type1;
102 if (is_object($message->header
->disposition
)) {
103 $filename = $header->disposition
->getProperty('filename');
105 $filename = $header->disposition
->getProperty('name');
108 $filename = $header->getParameter('name');
111 $filename = $header->getParameter('name');
114 $filename = decodeHeader($filename,true,false);
115 $filename = charset_encode($filename,$default_charset,false);
117 // If name is not set, use subject of email
118 if (strlen($filename) < 1) {
119 $filename = decodeHeader($subject, true, true);
120 $filename = charset_encode($filename,$default_charset,false);
121 if ($type1 == 'plain' && $type0 == 'text')
123 else if ($type1 == 'richtext' && $type0 == 'text')
125 else if ($type1 == 'postscript' && $type0 == 'application')
127 else if ($type1 == 'rfc822' && $type0 == 'message')
133 $filename = 'untitled' . strip_tags($ent_id);
134 $filename = $filename . '.' . $suffix;
139 * The following sections display the attachment in different
140 * ways depending on how they choose. The first way will download
141 * under any circumstance. This sets the Content-type to be
142 * applicatin/octet-stream, which should be interpreted by the
143 * browser as "download me".
144 * The second method (view) is used for images or other formats
145 * that should be able to be handled by the browser. It will
146 * most likely display the attachment inline inside the browser.
147 * And finally, the third one will be used by default. If it
148 * is displayable (text or html), it will load them up in a text
149 * viewer (built in to SquirrelMail). Otherwise, it sets the
150 * content-type as application/octet-stream
152 if (isset($absolute_dl) && $absolute_dl) {
153 SendDownloadHeaders($type0, $type1, $filename, 1);
155 SendDownloadHeaders($type0, $type1, $filename, 0);
157 /* be aware that any warning caused by download.php will corrupt the
158 * attachment in case of ERROR reporting = E_ALL and the output is the screen */
159 mime_print_body_lines ($imapConnection, $passed_id, $ent_id, $encoding);
160 $mailbox_cache[$aMailbox['NAME']] = $aMailbox;
161 sqsession_register($mailbox_cache,'mailbox_cache');