It isn't a workaround
[squirrelmail.git] / class / deliver / Deliver_IMAP.class.php
index 2ac7c4a7559124f5d7b341ff06e482b652a4fcf7..4bb7b8d003ccbbf6b8ccd5b64e5de8c7ff015078 100644 (file)
@@ -1,16 +1,33 @@
 <?php
+/**
+ * Deliver_IMAP.class.php
+ *
+ * Copyright (c) 1999-2005 The SquirrelMail Project Team
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
+ * Delivery backend for the Deliver class.
+ *
+ * @version $Id$
+ * @package squirrelmail
+ */
 
-require_once('Deliver.class.php');
+/** This of course depends upon Deliver.. */
 
+require_once(SM_PATH . 'class/deliver/Deliver.class.php');
+
+/**
+ * This class is incomplete and entirely undocumented.
+ * @package squirrelmail
+ */
 class Deliver_IMAP extends Deliver {
 
     function getBcc() {
        return true;
     }
-    
-    /* to do: finishing the imap-class so the initStream function can call the 
+
+    /* to do: finishing the imap-class so the initStream function can call the
        imap-class */
 }
 
 
-?>
+?>
\ No newline at end of file