| +-------------------------------------------------------------------------+ $Id: index.php 2696 2009-07-02 06:38:26Z thomasb $ */ /** * Use PHP5 autoload for dynamic class loading * (copy from program/include/iniset.php) */ function __autoload($classname) { $filename = preg_replace( array('/MDB2_(.+)/', '/Mail_(.+)/', '/Net_(.+)/', '/^html_.+/', '/^utf8$/'), array('MDB2/\\1', 'Mail/\\1', 'Net/\\1', 'html', 'utf8.class'), $classname ); include_once $filename. '.php'; } /** * Fake internal error handler to catch errors */ function raise_error($p) { $rci = rcube_install::get_instance(); $rci->raise_error($p); }