imap.php 597 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * imap.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. * 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. require_once(SM_PATH . 'functions/imap_search.php');
  20. ?>