Added (c) stuff and some formatting.
[squirrelmail.git] / functions / imap.php
1 <?php
2
3 /**
4 ** imap.php
5 **
6 ** Copyright (c) 1999-2001 The Squirrelmail Development 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 **/
14
15 $imap_backend = 'imap';
16
17 require_once('../functions/' . $imap_backend . '_mailbox.php');
18 require_once('../functions/' . $imap_backend . '_messages.php');
19 require_once('../functions/' . $imap_backend . '_general.php');
20 require_once('../functions/' . $imap_backend . '_search.php');
21
22 ?>