fix bug #481886 with anonymous hint from sourceforge trackers :-)
[squirrelmail.git] / functions / imap.php
1 <?php
2
3 /** This just includes the different sections of the imap functions.
4 ** They have been organized into these sections for simplicity sake.
5 **
6 ** $Id$
7 **/
8
9 $imap_backend = 'imap';
10
11 require_once('../functions/' . $imap_backend . '_mailbox.php');
12 require_once('../functions/' . $imap_backend . '_messages.php');
13 require_once('../functions/' . $imap_backend . '_general.php');
14 require_once('../functions/' . $imap_backend . '_search.php');
15
16 ?>