dd507a56d79dbbb83d57937bc40448b3913165e4
[squirrelmail.git] / class / deliver / Deliver_IMAP.class.php
1 <?php
2 /**
3 * Deliver_IMAP.class.php
4 *
5 * Copyright (c) 1999-2002 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 */
12
13
14 require_once('Deliver.class.php');
15
16 class Deliver_IMAP extends Deliver {
17
18 function getBcc() {
19 return true;
20 }
21
22 /* to do: finishing the imap-class so the initStream function can call the
23 imap-class */
24 }
25
26
27 ?>