Fix quote_imap, the ereg pattern wasn't always interpreted right
[squirrelmail.git] / functions / imap.php
CommitLineData
59177427 1<?php
2d367c68 2
35586184 3/**
4 * imap.php
5 *
82d304a0 6 * Copyright (c) 1999-2004 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$
d6c32258 13 * @package squirrelmail
35586184 14 */
d068c0ec 15
d6c32258 16/** Includes */
b68edc75 17require_once(SM_PATH . 'functions/imap_mailbox.php');
18require_once(SM_PATH . 'functions/imap_messages.php');
19require_once(SM_PATH . 'functions/imap_general.php');
20require_once(SM_PATH . 'functions/imap_search.php');
b68edc75 21
35586184 22?>