| | |
| | | |
| | | // check client |
| | | $BROWSER = rcube_browser(); |
| | | |
| | | |
| | | // load config file |
| | | include_once('config/main.inc.php'); |
| | | $CONFIG = is_array($rcmail_config) ? $rcmail_config : array(); |
| | |
| | | |
| | | // prepare DB connection |
| | | $DB = new rcube_db($CONFIG['db_dsnw'], $CONFIG['db_dsnr']); |
| | | $DB->sqlite_initials = $INSTALL_PATH.'SQL/sqlite.initial.sql'; |
| | | |
| | | // we can use the database for storing session data |
| | | if (is_object($DB)) |
| | | if (is_object($DB) && $DB->db_provider!='sqlite') |
| | | include_once('include/session.inc'); |
| | | |
| | | |
| | |
| | | function rcmail_imap_init($connect=FALSE) |
| | | { |
| | | global $CONFIG, $IMAP; |
| | | |
| | | |
| | | $IMAP = new rcube_imap(); |
| | | |
| | | // enable caching of imap data |
| | | if ($CONFIG['enable_caching']===TRUE) |
| | | $IMAP->set_caching(TRUE); |
| | | |
| | | // set root dir from config |
| | | if (strlen($CONFIG['imap_root'])) |
| | |
| | | $javascript = "var $JS_OBJECT_NAME = new rcube_webmail();\n"; |
| | | $javascript .= "$JS_OBJECT_NAME.set_env('comm_path', '$COMM_PATH');\n"; |
| | | |
| | | if ($_GET['_framed'] || $_POST['_framed']) |
| | | if (!empty($GLOBALS['_framed'])) |
| | | $javascript .= "$JS_OBJECT_NAME.set_env('framed', true);\n"; |
| | | |
| | | $OUTPUT->add_script($javascript); |
| | |
| | | function rcmail_login($user, $pass, $host=NULL) |
| | | { |
| | | global $CONFIG, $IMAP, $DB, $sess_user_lang; |
| | | $user_id = NULL; |
| | | |
| | | if (!$host) |
| | | $host = $CONFIG['default_host']; |
| | | |
| | | // exit if IMAP login failed |
| | | if (!($imap_login = $IMAP->connect($host, $user, $pass))) |
| | | return FALSE; |
| | | |
| | | // query if user already registered |
| | | $sql_result = $DB->query(sprintf("SELECT user_id, language, preferences |
| | | FROM %s |
| | | WHERE username='%s' AND mail_host='%s'", |
| | | $sql_result = $DB->query(sprintf("SELECT user_id, username, language, preferences |
| | | FROM %s |
| | | WHERE mail_host='%s' AND (username='%s' OR alias='%s')", |
| | | get_table_name('users'), |
| | | $user, $host)); |
| | | addslashes($host), |
| | | addslashes($user), |
| | | addslashes($user))); |
| | | |
| | | // user already registered |
| | | // user already registered -> overwrite username |
| | | if ($sql_arr = $DB->fetch_assoc($sql_result)) |
| | | { |
| | | $user_id = $sql_arr['user_id']; |
| | | |
| | | $user = $sql_arr['username']; |
| | | } |
| | | |
| | | // parse $host URL |
| | | $a_host = parse_url($host); |
| | | if ($a_host['host']) |
| | | { |
| | | $host = $a_host['host']; |
| | | $imap_ssl = (isset($a_host['scheme']) && in_array($a_host['scheme'], array('ssl','imaps','tls'))) ? TRUE : FALSE; |
| | | $imap_port = isset($a_host['post']) ? $a_host['post'] : ($imap_ssl ? 993 : $CONFIG['default_port']); |
| | | } |
| | | |
| | | // exit if IMAP login failed |
| | | if (!($imap_login = $IMAP->connect($host, $user, $pass, $imap_port, $imap_ssl))) |
| | | return FALSE; |
| | | |
| | | // user already registered |
| | | if ($user_id && !empty($sql_arr)) |
| | | { |
| | | // get user prefs |
| | | if (strlen($sql_arr['preferences'])) |
| | | { |
| | |
| | | (created, last_login, username, mail_host) |
| | | VALUES (NOW(), NOW(), '%s', '%s')", |
| | | get_table_name('users'), |
| | | $user, $host)); |
| | | addslashes($user), |
| | | addslashes($host))); |
| | | |
| | | if ($user_id = $DB->insert_id()) |
| | | { |
| | |
| | | VALUES (%d, '1', '%s', '%s')", |
| | | get_table_name('identities'), |
| | | $user_id, |
| | | $user_name, |
| | | $user_email)); |
| | | addslashes($user_name), |
| | | addslashes($user_email))); |
| | | |
| | | // get existing mailboxes |
| | | $a_mailboxes = $IMAP->list_mailboxes(); |
| | |
| | | if ($CONFIG['trash_mbox'] && !in_array_nocase($CONFIG['trash_mbox'], $a_mailboxes)) |
| | | $IMAP->create_mailbox($CONFIG['trash_mbox'], TRUE); |
| | | } |
| | | else |
| | | { |
| | | raise_error(array('code' => 500, |
| | | 'type' => 'php', |
| | | 'line' => __LINE__, |
| | | 'file' => __FILE__, |
| | | 'message' => "Failed to create new user"), TRUE, FALSE); |
| | | } |
| | | |
| | | return $user_id; |
| | | } |
| | |
| | | { |
| | | global $OUTPUT, $JS_OBJECT_NAME, $REMOTE_REQUEST; |
| | | |
| | | $framed = ($_GET['framed'] || $_POST['_framed']); |
| | | $framed = $GLOBALS['_framed']; |
| | | $command = sprintf("display_message('%s', '%s');", |
| | | addslashes(rep_specialchars_output(rcube_label($message))), |
| | | $type); |
| | |
| | | |
| | | function console($msg, $type=1) |
| | | { |
| | | print $msg; |
| | | print "\n<hr>\n"; |
| | | if ($GLOBALS['REMOTE_REQUEST']) |
| | | print "// $msg\n"; |
| | | else |
| | | { |
| | | print $msg; |
| | | print "\n<hr>\n"; |
| | | } |
| | | } |
| | | |
| | | |
| | |
| | | exit; |
| | | } |
| | | |
| | | |
| | | // read directory program/localization/ and return a list of available languages |
| | | function rcube_list_languages() |
| | | { |
| | | global $CONFIG, $INSTALL_PATH; |
| | | static $sa_languages = array(); |
| | | |
| | | if (!sizeof($sa_languages)) |
| | | { |
| | | @include_once($INSTLL_PATH.'program/localization/index.inc'); |
| | | |
| | | if ($dh = @opendir($INSTLL_PATH.'program/localization')) |
| | | { |
| | | while (($name = readdir($dh)) !== false) |
| | | { |
| | | if ($name{0}=='.' || !is_dir($INSTLL_PATH.'program/localization/'.$name)) |
| | | continue; |
| | | |
| | | if ($label = $rcube_languages[$name]) |
| | | $sa_languages[$name] = $label ? $label : $name; |
| | | } |
| | | closedir($dh); |
| | | } |
| | | } |
| | | |
| | | return $sa_languages; |
| | | } |
| | | |
| | | |
| | | |
| | |
| | | // create and register a button |
| | | function rcube_button($attrib) |
| | | { |
| | | global $CONFIG, $OUTPUT, $JS_OBJECT_NAME; |
| | | global $CONFIG, $OUTPUT, $JS_OBJECT_NAME, $BROWSER; |
| | | static $sa_buttons = array(); |
| | | static $s_button_count = 100; |
| | | |
| | |
| | | |
| | | if ($attrib['alt']) |
| | | $attrib['alt'] = rep_specialchars_output(rcube_label($attrib['alt'])); |
| | | |
| | | |
| | | // set title to alt attribute for IE browsers |
| | | if ($BROWSER['ie'] && $attrib['title'] && !$attrib['alt']) |
| | | { |
| | | $attrib['alt'] = $attrib['title']; |
| | | unset($attrib['title']); |
| | | } |
| | | |
| | | // add empty alt attribute for XHTML compatibility |
| | | if (!isset($attrib['alt'])) |
| | | $attrib['alt'] = ''; |
| | |
| | | $input = new textfield($attrib); |
| | | |
| | | // use value from post |
| | | if ($_POST[$fname]) |
| | | if (!empty($_POST[$fname])) |
| | | $value = $_POST[$fname]; |
| | | |
| | | $out = $input->show($value); |
| | |
| | | if (is_array($CONFIG['default_host'])) |
| | | { |
| | | $select_host = new select(array('name' => '_host')); |
| | | $select_host->add($CONFIG['default_host']); |
| | | |
| | | foreach ($CONFIG['default_host'] as $key => $value) |
| | | $select_host->add($value, (is_numeric($key) ? $value : $key)); |
| | | |
| | | $fields['host'] = $select_host->show($_POST['_host']); |
| | | } |
| | | else if (!strlen($CONFIG['default_host'])) |