Deliver_IMAP.class.php 655 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * Deliver_IMAP.class.php
  4. *
  5. * Copyright (c) 1999-2004 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. * @version $Id$
  11. * @package squirrelmail
  12. */
  13. /** This of course depends upon Deliver.. */
  14. require_once(SM_PATH . 'class/deliver/Deliver.class.php');
  15. /**
  16. * This class is incomplete and entirely undocumented.
  17. * @package squirrelmail
  18. */
  19. class Deliver_IMAP extends Deliver {
  20. function getBcc() {
  21. return true;
  22. }
  23. /* to do: finishing the imap-class so the initStream function can call the
  24. imap-class */
  25. }
  26. ?>