imap.php 454 B

1234567891011121314
  1. <?php
  2. /** This just includes the different sections of the imap functions.
  3. ** They have been organized into these sections for simplicity sake.
  4. **/
  5. $imap_php = true;
  6. $imap_backend = 'imap';
  7. include ("../functions/".$imap_backend."_mailbox.php");
  8. include ("../functions/".$imap_backend."_messages.php");
  9. include ("../functions/".$imap_backend."_general.php");
  10. include ("../functions/".$imap_backend."_search.php");
  11. ?>