2007-10-10 19:15:47 +04:00
|
|
|
<?php
|
|
|
|
/*
|
2013-03-07 01:22:53 +04:00
|
|
|
* Copyright 2005-2013 the original author or authors.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2007-10-10 19:15:47 +04:00
|
|
|
*/
|
|
|
|
|
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";
|
2011-02-26 16:13:16 +03:00
|
|
|
$mysqlprefix = "";
|
2007-10-10 19:15:47 +04:00
|
|
|
|
|
|
|
$dbencoding = "utf8";
|
|
|
|
$force_charset_in_connection = true;
|
|
|
|
|
2011-11-08 20:42:41 +04:00
|
|
|
$use_persistent_connection = false;
|
|
|
|
|
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
|
|
|
*/
|
2011-02-26 17:04:12 +03:00
|
|
|
$home_locale = "en"; /* native name will be used in this locale */
|
|
|
|
$default_locale = "en"; /* if user does not provide known lang */
|
2007-10-10 19:15:47 +04:00
|
|
|
|
2011-11-08 20:42:41 +04:00
|
|
|
?>
|