remove unnessecarry \r\n
[squirrelmail.git] / class / deliver / Deliver_IMAP.class.php
CommitLineData
e1ee60fe 1<?php
5b8fd093 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
e1ee60fe 13
14require_once('Deliver.class.php');
15
16class Deliver_IMAP extends Deliver {
17
d39ae420 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 */
e1ee60fe 24}
d39ae420 25
26
e1ee60fe 27?>