Preparation to begin using phpdocumentor.
[squirrelmail.git] / class / deliver / Deliver_IMAP.class.php
CommitLineData
e1ee60fe 1<?php
5b8fd093 2/**
3 * Deliver_IMAP.class.php
4 *
76911253 5 * Copyright (c) 1999-2003 The SquirrelMail Project Team
5b8fd093 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
0f85ddf9 13require_once(SM_PATH . 'class/deliver/Deliver.class.php');
e1ee60fe 14
15class Deliver_IMAP extends Deliver {
16
d39ae420 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 */
e1ee60fe 23}
d39ae420 24
25
e1ee60fe 26?>