imap.php 596 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * imap.php
  4. *
  5. * Copyright (c) 1999-2001 The SquirrelMail Development 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. $imap_backend = 'imap';
  14. require_once('../functions/' . $imap_backend . '_mailbox.php');
  15. require_once('../functions/' . $imap_backend . '_messages.php');
  16. require_once('../functions/' . $imap_backend . '_general.php');
  17. require_once('../functions/' . $imap_backend . '_search.php');
  18. ?>