imap.php 721 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * imap.php
  4. *
  5. * Copyright (c) 1999-2005 The SquirrelMail Project Team
  6. * Licensed under the GNU GPL. For full terms see the file COPYING.
  7. *
  8. * This just includes the different sections of the imap functions.
  9. * They have been organized into these sections for simplicity sake.
  10. *
  11. * @version $Id$
  12. * @package squirrelmail
  13. * @subpackage imap
  14. */
  15. /** Includes */
  16. require_once(SM_PATH . 'functions/imap_mailbox.php');
  17. require_once(SM_PATH . 'functions/imap_messages.php');
  18. require_once(SM_PATH . 'functions/imap_general.php');
  19. /** This is here for bc */
  20. require_once(SM_PATH . 'functions/date.php');
  21. require_once(SM_PATH . 'functions/mailbox_display.php');
  22. require_once(SM_PATH . 'functions/mime.php');
  23. ?>