<?php
	/**************************************************************************\
	* eGroupWare                                                               *
	* http://www.egroupware.org                                                *
	* This file was originaly written by Dan Kuykendall                        *
	* --------------------------------------------                             *
	*  This program is free software; you can redistribute it and/or modify it *
	*  under the terms of the GNU General Public License as published by the   *
	*  Free Software Foundation; either version 2 of the License, or (at your  *
	*  option) any later version.                                              *
	\**************************************************************************/
	/* $Id: header.inc.php.template,v 1.55.2.1 2004/08/03 14:05:35 reinerj Exp $ */

	/**************************************************************************\
	* !!!!!!! EDIT THESE LINES !!!!!!!!                                        *
	* This setting allows you to easily move the include directory and the     *
	* base of the eGroupWare install. Simple edit the following 2 lines with   *
	* the absolute path to fit your site, and you should be up and running.    *
	\**************************************************************************/

	define('PHPGW_SERVER_ROOT','{SERVER_ROOT}');
	define('PHPGW_INCLUDE_ROOT','{INCLUDE_ROOT}');
	$GLOBALS['phpgw_info']['server']['header_admin_user'] = '{HEADER_ADMIN_USER}';
	$GLOBALS['phpgw_info']['server']['header_admin_password'] = '{HEADER_ADMIN_PASSWORD}';
	$GLOBALS['phpgw_info']['server']['setup_acl'] = '{SETUP_ACL}';

	// Opcoes exlusivas para o Expresso Livre
	$GLOBALS['phpgw_info']['server']['use_https'] = {USE_HTTPS};
	$GLOBALS['phpgw_info']['server']['sugestoes_email_to'] = '{SUGESTOES_EMAIL_TO}';
	$GLOBALS['phpgw_info']['server']['domain_name'] = '{DOMAIN_NAME}';
	$GLOBALS['phpgw_info']['server']['use_prefix_organization'] = {USE_PREFIX_ORGANIZATION};

/********** INICIO BLOCO MAILMAN ************/

	// Opcoes usadas com servidor de listas Mailman
	$GLOBALS['phpgw_info']['server']['use_mailman'] = '{USE_MAILMAN}';
	$GLOBALS['phpgw_info']['server']['dn_listas'] = '{DN_LISTAS}';
	$GLOBALS['phpgw_info']['server']['dominio_listas'] = '{DOMINIO_LISTAS}';
	$GLOBALS['phpgw_info']['server']['porta_mailman'] = '{PORTA_MAILMAN}';
	$GLOBALS['phpgw_info']['server']['host_mailman'] = '{HOST_MAILMAN}';
	$GLOBALS['phpgw_info']['server']['url_mailman'] = '{URL_MAILMAN}';

/********** FIM BLOCO MAILMAN ***************/

	// If you want to identify your App Server (recommended for multiple servers):
	//$GLOBALS['phpgw_info']['server']['use_frontend_id']   = 1024;
	//$GLOBALS['phpgw_info']['server']['use_frontend_name'] = '01';
			
	/* eGroupWare domain-specific db settings */{domains}
	/*
	** If you want to have your domains in a select box, change to True
	** If not, users will have to login as user@domain
	** Note: This is only for virtual domain support, default domain users can login only using
	** there loginid.
	*/
	$GLOBALS['phpgw_info']['server']['show_domain_selectbox'] = {DOMAIN_SELECTBOX};

	$GLOBALS['phpgw_info']['server']['db_persistent'] = {DB_PERSISTENT};

	/*
	** eGroupWare can handle session management using the database or 
	** the session support built into PHP4 which usually gives better
	** performance. 
	** Your choices are 'db' or 'php4'
	*/
	$GLOBALS['phpgw_info']['server']['sessions_type'] = '{SESSIONS_TYPE}';

	/* Select which login template set you want, most people will use default */
	$GLOBALS['phpgw_info']['login_template_set'] = 'celepar';

	/* This is used to control mcrypt's use */
	$GLOBALS['phpgw_info']['server']['mcrypt_enabled'] = {ENABLE_MCRYPT};
	/* Set this to 'old' for versions < 2.4, otherwise the exact mcrypt version you use. */
	$GLOBALS['phpgw_info']['server']['versions']['mcrypt'] = '{MCRYPT_VERSION}';

	/*
	** This is a random string used as the initialization vector for mcrypt
	** feel free to change it when setting up eGrouWare on a clean database,
	** but you must not change it after that point!
	** It should be around 30 bytes in length.
	*/
	$GLOBALS['phpgw_info']['server']['mcrypt_iv'] = '{MCRYPT_IV}';

	if(!isset($GLOBALS['phpgw_info']['flags']['nocachecontrol']) || !$GLOBALS['phpgw_info']['flags']['nocachecontrol'])
	{
		header('Cache-Control: no-cache, must-revalidate');  // HTTP/1.1
		header('Pragma: no-cache');                          // HTTP/1.0
	}
	else
	{
		// allow caching by browser
		session_cache_limiter(PHP_VERSION >= 4.2 ? 'private_no_expire' : 'private');
	}

	/* debugging settings */
	define('DEBUG_APP',  False);
	define('DEBUG_API',  False);
	define('DEBUG_DATATYPES',  True);
	define('DEBUG_LEVEL',  3);
	define('DEBUG_OUTPUT', 2); /* 1 = screen,  2 = DB. For both use 3. */
	define('DEBUG_TIMER', False);

	function perfgetmicrotime()
	{
		list($usec, $sec) = explode(' ',microtime());
		return ((float)$usec + (float)$sec);
	}

	if (DEBUG_TIMER)
	{
		$GLOBALS['debug_timer_start'] = perfgetmicrotime();
	}

	/**************************************************************************\
	* Do not edit these lines                                                  *
	\**************************************************************************/
	define('PHPGW_API_INC',PHPGW_INCLUDE_ROOT.'/phpgwapi/inc');
	include(PHPGW_SERVER_ROOT.'/phpgwapi/setup/setup.inc.php');
	$GLOBALS['phpgw_info']['server']['versions']['phpgwapi'] = $setup_info['phpgwapi']['version'];
	$GLOBALS['phpgw_info']['server']['versions']['current_header'] = $setup_info['phpgwapi']['versions']['current_header'];
	unset($setup_info);
	$GLOBALS['phpgw_info']['server']['versions']['header'] = '1.27';
	/* This is a fix for NT */
	if(!isset($GLOBALS['phpgw_info']['flags']['noapi']) || !$GLOBALS['phpgw_info']['flags']['noapi'] == True)
	{
		include(PHPGW_API_INC . '/functions.inc.php');
		include(PHPGW_API_INC . '/xml_functions.inc.php');
		include(PHPGW_API_INC . '/soap_functions.inc.php');
	}

	/*
	  Leave off the final php closing tag, some editors will add
	  a \n or space after which will mess up cookies later on
	*/<!-- BEGIN domain -->
	$GLOBALS['phpgw_domain']['{DB_DOMAIN}'] = array(
		'db_host' => '{DB_HOST}',
		'db_port' => '{DB_PORT}',
		'db_name' => '{DB_NAME}',
		'db_user' => '{DB_USER}',
		'db_pass' => '{DB_PASS}',
		// Look at the README file
		'db_type' => '{DB_TYPE}',
		// This will limit who is allowed to make configuration modifications
		'config_user'   => '{CONFIG_USER}',
		'config_passwd' => '{CONFIG_PASS}'
	);

<!-- END domain -->