Use attachment_dir only at the point where we're actually
[squirrelmail.git] / class / deliver / Deliver_IMAP.class.php
CommitLineData
e1ee60fe 1<?php
4b4abf93 2
5b8fd093 3/**
4 * Deliver_IMAP.class.php
5 *
5b8fd093 6 * Delivery backend for the Deliver class.
7 *
4b5049de 8 * @copyright &copy; 1999-2007 The SquirrelMail Project Team
4b4abf93 9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
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}