imap.php 544 B

123456789101112131415161718
  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. ** $Id$
  6. **/
  7. if (defined ('imap_php'))
  8. return;
  9. define ('imap_php', true);
  10. $imap_backend = 'imap';
  11. include ('../functions/' . $imap_backend . '_mailbox.php');
  12. include ('../functions/' . $imap_backend . '_messages.php');
  13. include ('../functions/' . $imap_backend . '_general.php');
  14. include ('../functions/' . $imap_backend . '_search.php');
  15. ?>