Added (c) stuff and some formatting.
[squirrelmail.git] / functions / mime.php
index 90e32a90a727b51ef2f4399ef95655e61cfd9a06..a790fb20740eff3daa19cc1362fcf2983dce4981 100644 (file)
@@ -1,5 +1,9 @@
 <?php
+
    /** mime.php
+    **
+    **  Copyright (c) 1999-2001 The Squirrelmail Development Team
+    **  Licensed under the GNU GPL. For full terms see the file COPYING.
     **
     ** This contains the functions necessary to detect and decode MIME
     ** messages.
@@ -7,11 +11,8 @@
     ** $Id$
     **/
 
-   if (defined('mime_php'))
-      return;
-   define('mime_php', true);
-
    require_once('../functions/imap.php');
+   require_once('../functions/attachment_common.php');
 
    /** Setting up the objects that have the structure for the message **/
 
@@ -24,6 +25,7 @@
       var $cc = array(), $bcc = array(), $reply_to = '', $subject = '';
       var $id = 0, $mailbox = '', $description = '', $filename = '';
       var $entity_id = 0, $message_id = 0, $name = '';
+      // var $priority = "";
    }
 
    class message {