Added the two new themes to the defaul config.
[squirrelmail.git] / functions / imap.php
CommitLineData
59177427 1<?php
d29aac0e 2 /** This just includes the different sections of the imap functions.
3 ** They have been organized into these sections for simplicity sake.
245a6892 4 **
5 ** $Id$
3302d0d4 6 **/
d068c0ec 7
f435778e 8 if (defined ('imap_php'))
9 return;
10 define ('imap_php', true);
e9d611cb 11
12 $imap_backend = 'imap';
d29aac0e 13
0fc2aca0 14 require_once('../functions/' . $imap_backend . '_mailbox.php');
15 require_once('../functions/' . $imap_backend . '_messages.php');
16 require_once('../functions/' . $imap_backend . '_general.php');
17 require_once('../functions/' . $imap_backend . '_search.php');
18?>