imap.php 579 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * imap.php
  4. *
  5. * Copyright (c) 1999-2003 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. */
  13. require_once(SM_PATH . 'functions/imap_mailbox.php');
  14. require_once(SM_PATH . 'functions/imap_messages.php');
  15. require_once(SM_PATH . 'functions/imap_general.php');
  16. require_once(SM_PATH . 'functions/imap_search.php');
  17. require_once(SM_PATH . 'functions/imap_parse.php');
  18. ?>