alecpl
2008-10-03 f613a1e4e004dd03d7de80ea5a45bee71d3a3454
commit | author | age
47124c 1 <?php
T 2
3 /*
4  +-----------------------------------------------------------------------+
197601 5  | program/include/iniset.php                                            |
47124c 6  |                                                                       |
T 7  | This file is part of the RoundCube Webmail client                     |
8  | Copyright (C) 2008, RoundCube Dev, - Switzerland                      |
9  | Licensed under the GNU GPL                                            |
10  |                                                                       |
11  | PURPOSE:                                                              |
12  |   Setup the application envoronment required to process               |
13  |   any request.                                                        |
14  +-----------------------------------------------------------------------+
15  | Author: Till Klampaeckel <till@php.net>                               |
16  |         Thomas Bruederli <roundcube@gmail.com>                        |
17  +-----------------------------------------------------------------------+
18
19  $Id: cache.inc 88 2005-12-03 16:54:12Z roundcube $
20
21 */
22
23
24 // application constants
83a763 25 define('RCMAIL_VERSION', '0.2-trunk');
47124c 26 define('RCMAIL_CHARSET', 'UTF-8');
T 27 define('JS_OBJECT_NAME', 'rcmail');
28
29 if (!defined('INSTALL_PATH')) {
30   define('INSTALL_PATH', dirname($_SERVER['SCRIPT_FILENAME']).'/');
31 }
32
bba657 33 define('RCMAIL_CONFIG_DIR', INSTALL_PATH . 'config');
T 34
47124c 35 // make sure path_separator is defined
T 36 if (!defined('PATH_SEPARATOR')) {
37   define('PATH_SEPARATOR', (eregi('win', PHP_OS) ? ';' : ':'));
38 }
39
40 // RC include folders MUST be included FIRST to avoid other
41 // possible not compatible libraries (i.e PEAR) to be included
42 // instead the ones provided by RC
43 $include_path = INSTALL_PATH . PATH_SEPARATOR;
44 $include_path.= INSTALL_PATH . 'program' . PATH_SEPARATOR;
45 $include_path.= INSTALL_PATH . 'program/lib' . PATH_SEPARATOR;
46 $include_path.= INSTALL_PATH . 'program/include' . PATH_SEPARATOR;
47 $include_path.= ini_get('include_path');
48
49 if (set_include_path($include_path) === false) {
50   die('Fatal error: ini_set/set_include_path does not work.');
51 }
52
53 ini_set('session.name', 'roundcube_sessid');
54 ini_set('session.use_cookies', 1);
cefd1d 55 ini_set('session.only_use_cookies', 1);
47124c 56 ini_set('session.gc_maxlifetime', 21600);
T 57 ini_set('session.gc_divisor', 500);
58 ini_set('error_reporting', E_ALL&~E_NOTICE);
59 set_magic_quotes_runtime(0);
60
61 // increase maximum execution time for php scripts
62 // (does not work in safe mode)
63 if (!ini_get('safe_mode')) {
64   set_time_limit(120);
65 }
66
67 /**
68  * Use PHP5 autoload for dynamic class loading
69  * 
70  * @todo Make Zend, PEAR etc play with this
71  */
72 function __autoload($classname)
73 {
74   $filename = preg_replace(
75       array('/MDB2_(.+)/', '/Mail_(.+)/', '/^html_.+/', '/^utf8$/'),
76       array('MDB2/\\1', 'Mail/\\1', 'html', 'utf8.class'),
77       $classname
78   );
79   include_once $filename. '.php';
80 }
81
82 /**
83  * Local callback function for PEAR errors
84  */
85 function rcube_pear_error($err)
86 {
87   error_log(sprintf("%s (%s): %s",
88     $err->getMessage(),
89     $err->getCode(),
90     $err->getUserinfo()), 0);
91 }
92
93 // include global functions
94 require_once 'include/bugs.inc';
95 require_once 'include/main.inc';
96 require_once 'include/rcube_shared.inc';
97
98
99 // set PEAR error handling (will also load the PEAR main class)
100 PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'rcube_pear_error');
101