do not add spaces to references header (#1634294),
[squirrelmail.git] / class / deliver / Deliver_IMAP.class.php
index 2ac7c4a7559124f5d7b341ff06e482b652a4fcf7..855cd29df03f829a6781c73a55832a57f64e785b 100644 (file)
@@ -1,16 +1,30 @@
 <?php
 
-require_once('Deliver.class.php');
+/**
+ * Deliver_IMAP.class.php
+ *
+ * Delivery backend for the Deliver class.
+ *
+ * @copyright &copy; 1999-2007 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package squirrelmail
+ */
 
+/** 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 */
 }
-
-
-?>