Many last minute fixes
[squirrelmail.git] / functions / imap.php
CommitLineData
59177427 1<?php
2d367c68 2
35586184 3/**
4 * imap.php
5 *
15e6162e 6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
35586184 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This just includes the different sections of the imap functions.
10 * They have been organized into these sections for simplicity sake.
11 *
12 * $Id$
13 */
d068c0ec 14
35586184 15$imap_backend = 'imap';
2d367c68 16
35586184 17require_once('../functions/' . $imap_backend . '_mailbox.php');
18require_once('../functions/' . $imap_backend . '_messages.php');
19require_once('../functions/' . $imap_backend . '_general.php');
20require_once('../functions/' . $imap_backend . '_search.php');
2d367c68 21
35586184 22?>