check if safe_mode is enabled (putenv is not allowed then) and
[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.
3302d0d4 4 **/
d068c0ec 5
6 $imap_php = true;
e9d611cb 7
8 $imap_backend = 'imap';
d29aac0e 9
e9d611cb 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");
3302d0d4 14?>