Clean up download.php
authorstekkel <stekkel@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 1 Aug 2002 10:25:40 +0000 (10:25 +0000)
committerstekkel <stekkel@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 1 Aug 2002 10:25:40 +0000 (10:25 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3224 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/view_text.php [new file with mode: 0644]

diff --git a/src/view_text.php b/src/view_text.php
new file mode 100644 (file)
index 0000000..da200a5
--- /dev/null
@@ -0,0 +1,66 @@
+<?php
+
+/**
+ * view_text.php
+ *
+ * Copyright (c) 1999-2002 The SquirrelMail Project Team
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
+ * This is the code to view the text attachments.
+ *
+ * $Id$
+ */
+
+
+   require_once('../src/validate.php');
+   require_once('../functions/imap.php');
+   require_once('../functions/mime.php');
+
+   $mailbox = urldecode($mailbox);
+   if (!isset($passed_ent_id)) {
+      $passed_ent_id = '';
+   }
+
+   $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
+   $mbx_response =  sqimap_mailbox_select($imapConnection, $mailbox);
+
+   $message = &$messages[$mbx_response['UIDVALIDITY']]["$passed_id"];
+   $message = &$message->getEntity($passed_ent_id);
+
+   $header = $message->header;
+   $charset = $header->charset;
+   $type0 = $header->type0;
+   $type1 = $header->type1;
+   $encoding = strtolower($header->encoding);
+
+   $msg_url = 'read_body.php?' . $QUERY_STRING;
+
+   $body = mime_fetch_body($imapConnection, $passed_id, $passed_ent_id);
+   $body = decodeBody($body, $encoding);
+
+    displayPageHeader($color, 'None');
+
+    echo "<BR><TABLE WIDTH=\"100%\" BORDER=0 CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER><TR><TD BGCOLOR=\"$color[0]\">".
+         "<B><CENTER>".
+         _("Viewing a text attachment") . " - ";
+    echo '<a href="'.$msg_url.'">'. _("View message") . '</a>';
+
+    $dwnld_url = '../src/download.php?'. $QUERY_STRING.'&amp;absolute_dl=1';
+    echo '</b></td><tr><tr><td><CENTER><A HREF="'.$dwnld_url. '">'.
+         _("Download this as a file").
+         "</A></CENTER><BR>".
+         "</CENTER></B>".
+         "</TD></TR></TABLE>".
+         "<TABLE WIDTH=\"98%\" BORDER=0 CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER><TR><TD BGCOLOR=\"$color[0]\">".
+         "<TR><TD BGCOLOR=\"$color[4]\"><TT>";
+
+    if ($type1 == 'html') {
+        $msg  = sqimap_get_message($imapConnection, $passed_id, $mailbox);
+       $msg = $msg->getEntity($passed_ent_id);
+        $body = MagicHTML( $body, $passed_id, $msg );
+    } else {
+        translateText($body, $wrap_at, $charset);
+    }
+    echo $body .
+         "</TT></TD></TR></TABLE>";
+?>