imap.php 482 B

12345678910111213141516
  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. $imap_backend = 'imap';
  8. require_once('../functions/' . $imap_backend . '_mailbox.php');
  9. require_once('../functions/' . $imap_backend . '_messages.php');
  10. require_once('../functions/' . $imap_backend . '_general.php');
  11. require_once('../functions/' . $imap_backend . '_search.php');
  12. ?>