Forgot to check default template set before falling back to plugin default template...
[squirrelmail.git] / class / deliver / Deliver_IMAP.class.php
index 026eb58cd5cb72262ff52f8e6af7889a92f8e21c..2bb90dd08da491b0e53bb983d6b0d53b07c5b9c7 100644 (file)
@@ -1,8 +1,30 @@
 <?php
 
-require_once('Deliver.class.php');
+/**
+ * Deliver_IMAP.class.php
+ *
+ * Delivery backend for the Deliver class.
+ *
+ * @copyright &copy; 1999-2006 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
+       imap-class */
 }
-?>