- fixed error in iso-8859-2 handling function in function/i18n.php.
[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
6 $imap_php = true;
7
8 $imap_backend = 'imap';
9
10 include ("../functions/".$imap_backend."_mailbox.php");
11 include ("../functions/".$imap_backend."_messages.php");
12 include ("../functions/".$imap_backend."_general.php");
13 include ("../functions/".$imap_backend."_search.php");
14 ?>