class needs phpdoc @package declaration
[squirrelmail.git] / class / deliver / Deliver_IMAP.class.php
1 <?php
2 /**
3 * Deliver_IMAP.class.php
4 *
5 * Copyright (c) 1999-2004 The SquirrelMail Project Team
6 * Licensed under the GNU GPL. For full terms see the file COPYING.
7 *
8 * Delivery backend for the Deliver class.
9 *
10 * $Id$
11 * @package squirrelmail
12 */
13
14 /** This of course depends upon Deliver.. */
15
16 require_once(SM_PATH . 'class/deliver/Deliver.class.php');
17
18 /**
19 * This class is incomplete and entirely undocumented.
20 * @package squirrelmail
21 */
22 class Deliver_IMAP extends Deliver {
23
24 function getBcc() {
25 return true;
26 }
27
28 /* to do: finishing the imap-class so the initStream function can call the
29 imap-class */
30 }
31
32
33 ?>