mirror of
				https://github.com/Mibew/tray.git
				synced 2025-10-03 00:03:34 +03:00 
			
		
		
		
	git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@399 c66351dc-e62f-0410-b875-e3a5c0b9693f
		
			
				
	
	
		
			49 lines
		
	
	
		
			1011 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1011 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/*
 | 
						|
 * This file is part of Web Instant Messenger project.
 | 
						|
 *
 | 
						|
 * Copyright (c) 2005-2009 Web Messenger Community
 | 
						|
 * 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
 | 
						|
 */
 | 
						|
 | 
						|
/*
 | 
						|
 *  Application path on server
 | 
						|
 */
 | 
						|
$webimroot = "/webim";
 | 
						|
 | 
						|
/*
 | 
						|
 *  Internal encoding
 | 
						|
 */
 | 
						|
$webim_encoding = "utf-8";
 | 
						|
 | 
						|
/*
 | 
						|
 *  MySQL Database parameters
 | 
						|
 */
 | 
						|
$mysqlhost = "localhost";
 | 
						|
$mysqldb = "webim_db";
 | 
						|
$mysqllogin = "webim_lite";
 | 
						|
$mysqlpass = "123";
 | 
						|
 | 
						|
$dbencoding = "utf8";
 | 
						|
$force_charset_in_connection = true;
 | 
						|
 | 
						|
/*
 | 
						|
 *  Mailbox
 | 
						|
 */
 | 
						|
$webim_mailbox = "webim@yourdomain.com";
 | 
						|
$mail_encoding = "utf-8";
 | 
						|
 | 
						|
/*
 | 
						|
 *  Locales
 | 
						|
 */
 | 
						|
$home_locale = "en";						/* native name will be used in this locale */
 | 
						|
$default_locale = "en";						/* if user does not provide known lang */
 | 
						|
 | 
						|
?>
 |