Give compose screen the startMessage
[squirrelmail.git] / functions / imap.php
1 <?php
2
3 /**
4 * imap.php
5 *
6 * Copyright (c) 1999-2003 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This just includes the different sections of the imap functions.
10 * They have been organized into these sections for simplicity sake.
11 *
12 * $Id$
13 * @package squirrelmail
14 */
15
16 /** Includes */
17 require_once(SM_PATH . 'functions/imap_mailbox.php');
18 require_once(SM_PATH . 'functions/imap_messages.php');
19 require_once(SM_PATH . 'functions/imap_general.php');
20 require_once(SM_PATH . 'functions/imap_search.php');
21
22 ?>