two more subpackage blocks
[squirrelmail.git] / functions / imap.php
... / ...
CommitLineData
1<?php
2
3/**
4 * imap.php
5 *
6 * Copyright (c) 1999-2004 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 * @version $Id$
13 * @package squirrelmail
14 * @subpackage imap
15 */
16
17/** Includes */
18require_once(SM_PATH . 'functions/imap_mailbox.php');
19require_once(SM_PATH . 'functions/imap_messages.php');
20require_once(SM_PATH . 'functions/imap_general.php');
21require_once(SM_PATH . 'functions/imap_search.php');
22
23?>