imap.php 568 B

12345678910111213141516171819202122
  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. * $Id$
  12. * @package squirrelmail
  13. */
  14. /** Includes */
  15. require_once(SM_PATH . 'functions/imap_mailbox.php');
  16. require_once(SM_PATH . 'functions/imap_messages.php');
  17. require_once(SM_PATH . 'functions/imap_general.php');
  18. require_once(SM_PATH . 'functions/imap_search.php');
  19. ?>