Invalid initialization of To: header (#1772893).
[squirrelmail.git] / class / deliver / Deliver_IMAP.class.php
index 7aec62ff3f306adc608fe0e0139d3ff90f1e5cf8..855cd29df03f829a6781c73a55832a57f64e785b 100644 (file)
@@ -1,27 +1,30 @@
 <?php
+
 /**
  * Deliver_IMAP.class.php
  *
- * Copyright (c) 1999-2002 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
  * Delivery backend for the Deliver class.
  *
- * $Id$
+ * @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('../class/deliver/Deliver.class.php');
+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 */
 }
-
-
-?>