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.
|
2009-08-04 20:30:39 +04:00
|
|
|
*
|
2009-06-04 02:44:32 +04:00
|
|
|
* Copyright (c) 2005-2009 Mibew Messenger Community
|
2009-08-04 19:03:27 +04:00
|
|
|
* All rights reserved. The contents of this file are subject to 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
|
2009-08-04 20:30:39 +04:00
|
|
|
*
|
2009-08-04 17:38:37 +04:00
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* the GNU General Public License Version 2 or later (the "GPL"), in which case
|
|
|
|
* the provisions of the GPL are applicable instead of those above. If you wish
|
|
|
|
* to allow use of your version of this file only under the terms of the GPL, and
|
|
|
|
* not to allow others to use your version of this file under the terms of the
|
|
|
|
* EPL, indicate your decision by deleting the provisions above and replace them
|
|
|
|
* with the notice and other provisions required by the GPL.
|
2009-08-04 20:30:39 +04:00
|
|
|
*
|
2007-10-10 19:15:47 +04:00
|
|
|
* 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
|
|
|
|
2009-08-04 20:30:39 +04:00
|
|
|
?>
|