2007-10-10 19:15:47 +04:00
|
|
|
<?php
|
|
|
|
/*
|
2009-06-04 02:44:32 +04:00
|
|
|
* This file is part of Mibew Messenger project.
|
2007-10-10 19:15:47 +04:00
|
|
|
*
|
2009-06-04 02:44:32 +04:00
|
|
|
* Copyright (c) 2005-2009 Mibew Messenger Community
|
2007-10-10 19:15:47 +04:00
|
|
|
* All rights reserved. This program and the accompanying materials
|
|
|
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
|
|
* which accompanies this distribution, and is available at
|
|
|
|
* http://www.eclipse.org/legal/epl-v10.html
|
|
|
|
*
|
|
|
|
* Contributors:
|
|
|
|
* Evgeny Gryaznov - initial API and implementation
|
|
|
|
*/
|
|
|
|
|
2008-09-30 03:07:06 +04:00
|
|
|
/*
|
2009-03-08 23:53:16 +03:00
|
|
|
* Application path on server
|
2007-10-30 15:13:04 +03:00
|
|
|
*/
|
|
|
|
$webimroot = "/webim";
|
|
|
|
|
2009-03-08 23:53:16 +03:00
|
|
|
/*
|
|
|
|
* Internal encoding
|
|
|
|
*/
|
|
|
|
$webim_encoding = "utf-8";
|
|
|
|
|
2007-10-10 19:15:47 +04:00
|
|
|
/*
|
|
|
|
* MySQL Database parameters
|
|
|
|
*/
|
|
|
|
$mysqlhost = "localhost";
|
|
|
|
$mysqldb = "webim_db";
|
|
|
|
$mysqllogin = "webim_lite";
|
|
|
|
$mysqlpass = "123";
|
|
|
|
|
|
|
|
$dbencoding = "utf8";
|
|
|
|
$force_charset_in_connection = true;
|
|
|
|
|
2008-05-12 13:23:16 +04:00
|
|
|
/*
|
2009-03-08 23:53:16 +03:00
|
|
|
* Mailbox
|
2007-12-03 00:32:47 +03:00
|
|
|
*/
|
2009-03-08 23:53:16 +03:00
|
|
|
$webim_mailbox = "webim@yourdomain.com";
|
|
|
|
$mail_encoding = "utf-8";
|
2007-12-03 00:32:47 +03:00
|
|
|
|
2007-10-10 19:15:47 +04:00
|
|
|
/*
|
2009-03-08 23:53:16 +03:00
|
|
|
* Locales
|
2007-10-10 19:15:47 +04:00
|
|
|
*/
|
2009-01-14 01:19:12 +03:00
|
|
|
$home_locale = "en"; /* native name will be used in this locale */
|
2008-09-30 03:07:06 +04:00
|
|
|
$default_locale = "en"; /* if user does not provide known lang */
|
2007-10-10 19:15:47 +04:00
|
|
|
|
|
|
|
?>
|