New egroupware install on new Debian box. Went through setup, all seems well, trying to login as a regular user (PAM auth) and I get "Account is expired". Here is my header.inc.php (edited to saved passwords) - thoughts?
_______________________________
<?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 18745 2005-07-08 05:00:14Z milosch $ */
/**************************************************************************\
* !!!!!!! 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. *
\**************************************************************************/
// allow to migrate from phpgw_info to egw_info
if (isset($GLOBALS['egw_info']))
{
$GLOBALS['phpgw_info'] =& $GLOBALS['egw_info'];
}
else
{
$GLOBALS['egw_info'] =& $GLOBALS['phpgw_info'];
}
/* eGroupWare domain-specific db settings */
$GLOBALS['egw_domain']['default'] = array(
'db_host' => 'localhost',
'db_port' => '3306',
'db_name' => ***
'db_user' => '***',
'db_pass' => '***',
// Look at the README file
'db_type' => 'mysql',
// This will limit who is allowed to make configuration modifications
'config_user' => '***',
'config_passwd' => '***'
);
$GLOBALS['egw_domain']['New'] = array(
'db_host' => 'localhost',
'db_port' => '3306',
'db_name' => '***',
'db_user' => '***',
'db_pass' => '***',
// Look at the README file
'db_type' => 'mysql',
// This will limit who is allowed to make configuration modifications
'config_user' => '***',
'config_passwd' => '***'
);
/*
** 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['egw_info']['server']['show_domain_selectbox'] = false;
/*
** 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['egw_info']['server']['sessions_type'] = 'db';
/* Select which login template set you want, most people will use default */
$GLOBALS['egw_info']['login_template_set'] = 'idots';
/* This is used to control mcrypt's use */
$GLOBALS['egw_info']['server']['mcrypt_enabled'] = false;
/* Set this to 'old' for versions < 2.4, otherwise the exact mcrypt version you use. */
$GLOBALS['egw_info']['server']['versions']['mcrypt'] = 'none';
/*
** 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['egw_info']['server']['mcrypt_iv'] = 'none';
/**************************************************************************\
* Do not edit these lines *
\**************************************************************************/
define('EGW_API_INC',EGW_INCLUDE_ROOT.'/phpgwapi/inc');
define('PHPGW_API_INC',EGW_INCLUDE_ROOT.'/phpgwapi/inc');
include(EGW_SERVER_ROOT.'/phpgwapi/setup/setup.inc.php');
$GLOBALS['egw_info']['server']['versions']['phpgwapi'] = $setup_info['phpgwapi']['version'];
$GLOBALS['egw_info']['server']['versions']['current_header'] = $setup_info['phpgwapi']['versions']['current_header'];
unset($setup_info);
$GLOBALS['egw_info']['server']['versions']['header'] = '1.28';
/* This is a fix for NT */
if(!isset($GLOBALS['egw_info']['flags']['noapi']) || !$GLOBALS['egw_info']['flags']['noapi'] == True)
{
ob_start(); // to prevent error messages to be send before our headers
include(EGW_API_INC . '/functions.inc.php');
include(EGW_API_INC . '/xml_functions.inc.php');
include(EGW_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
*/