moving main color tags to css
[squirrelmail.git] / functions / imap.php
CommitLineData
59177427 1<?php
2d367c68 2
35586184 3/**
4 * imap.php
5 *
35586184 6 * This just includes the different sections of the imap functions.
7 * They have been organized into these sections for simplicity sake.
8 *
4b4abf93 9 * @copyright &copy; 1999-2005 The SquirrelMail Project Team
10 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
eb19bc67 11 * @version $Id$
d6c32258 12 * @package squirrelmail
eb19bc67 13 * @subpackage imap
35586184 14 */
d068c0ec 15
d6c32258 16/** Includes */
b68edc75 17require_once(SM_PATH . 'functions/imap_mailbox.php');
18require_once(SM_PATH . 'functions/imap_messages.php');
19require_once(SM_PATH . 'functions/imap_general.php');
b68edc75 20
336bc47f 21/** This is here for bc */
22require_once(SM_PATH . 'functions/date.php');
23require_once(SM_PATH . 'functions/mailbox_display.php');
24require_once(SM_PATH . 'functions/mime.php');
25
f8a1ed5a 26?>