60309a2646aa03579597c6a5b4ccf7daaed67c12
[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 require_once(SM_PATH . 'class/deliver/Deliver.class.php');
14
15 class Deliver_IMAP extends Deliver {
16
17 function getBcc() {
18 return true;
19 }
20
21 /* to do: finishing the imap-class so the initStream function can call the
22 imap-class */
23 }
24
25
26 ?>