Operation "foo_once".
[squirrelmail.git] / functions / imap.php
1 <?php
2 /** This just includes the different sections of the imap functions.
3 ** They have been organized into these sections for simplicity sake.
4 **
5 ** $Id$
6 **/
7
8 if (defined ('imap_php'))
9 return;
10 define ('imap_php', true);
11
12 $imap_backend = 'imap';
13
14 include ('../functions/' . $imap_backend . '_mailbox.php');
15 include ('../functions/' . $imap_backend . '_messages.php');
16 include ('../functions/' . $imap_backend . '_general.php');
17 include ('../functions/' . $imap_backend . '_search.php');
18 ?>