Replacing tabs with spaces, trimming white space at EOL and newline at EOF
[squirrelmail.git] / class / deliver / Deliver_IMAP.class.php
CommitLineData
e1ee60fe 1<?php
5b8fd093 2/**
3 * Deliver_IMAP.class.php
4 *
82d304a0 5 * Copyright (c) 1999-2004 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 *
883d9cd3 10 * @version $Id$
2b646597 11 * @package squirrelmail
5b8fd093 12 */
13
2b646597 14/** This of course depends upon Deliver.. */
15
0f85ddf9 16require_once(SM_PATH . 'class/deliver/Deliver.class.php');
e1ee60fe 17
2b646597 18/**
19 * This class is incomplete and entirely undocumented.
20 * @package squirrelmail
21 */
e1ee60fe 22class Deliver_IMAP extends Deliver {
23
d39ae420 24 function getBcc() {
25 return true;
26 }
91e0dccc 27
28 /* to do: finishing the imap-class so the initStream function can call the
d39ae420 29 imap-class */
e1ee60fe 30}
d39ae420 31
32
91e0dccc 33?>