two more subpackage blocks
[squirrelmail.git] / functions / imap.php
index 384753f76886e45960307c56fe8e2a3af5ffc6e5..0f0bfb8f09ff4830876b9bbe45c2dd683ea3c93c 100644 (file)
@@ -1,16 +1,23 @@
 <?php
 
-   /**  This just includes the different sections of the imap functions.
-    **  They have been organized into these sections for simplicity sake.
-    **
-    **  $Id$
-    **/
+/**
+ * imap.php
+ *
+ * Copyright (c) 1999-2004 The SquirrelMail Project Team
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
+ * This just includes the different sections of the imap functions.
+ * They have been organized into these sections for simplicity sake.
+ *
+ * @version $Id$
+ * @package squirrelmail
+ * @subpackage imap
+ */
 
-   $imap_backend = 'imap';
+/** Includes */
+require_once(SM_PATH . 'functions/imap_mailbox.php');
+require_once(SM_PATH . 'functions/imap_messages.php');
+require_once(SM_PATH . 'functions/imap_general.php');
+require_once(SM_PATH . 'functions/imap_search.php');
 
-   require_once('../functions/' . $imap_backend . '_mailbox.php');
-   require_once('../functions/' . $imap_backend . '_messages.php');
-   require_once('../functions/' . $imap_backend . '_general.php');
-   require_once('../functions/' . $imap_backend . '_search.php');
-
-?>
\ No newline at end of file
+?>