Here are the config files in question:
From the perl mod...
/usr/lib/perl5/site_perl/esmith/nn_groupware_twiggi.pm lines 159 and 291
-------------------------------------------line 159-----------------------------------------
# Eintraege von nicht mehr vorhandenen Usern loeschen
foreach my $t (sort keys %twiggi_users)
{
if( ( db_get_type(\%accounts, $t)||'') ne "user" )
{
db_delete( \%twiggi_users, $t );
}
}
my @demo_members=split (",", db_get_prop (\%accounts, "twiggidemo", "Members"));
foreach my $u (sort keys %accounts)
{
my @y=grep { $_ eq $u } @demo_members; # ohne Demouser
if ( db_get_type(\%accounts, $u) eq "user" && !@y && $u ne "twiggiadmin" )
-------------------------------------------line 159-----------------------------------------
-------------------------------------------line 291-----------------------------------------
my @demo_members=split (",", db_get_prop (\%accounts, "twiggidemo", "Members"));
my $showdemousers=(db_get_prop( \%gwconf, "TWIGGI", "showdemousers") eq "enabled");
my $prefslock=(db_get_prop( \%gwconf, "TWIGGIDEMO", "prefslock") ne "disabled");
my $OUT="";
-------------------------------------------line 291-----------------------------------------
Template contents of /etc/e-smith/templates//opt/groupware/twiggi/config/custom.inc.php/10conf:
----------------------------------------10conf----------------------------------------------
{
use esmith::nn_groupware_twiggi;
use strict;
init_twiggi_db();
$OUT=twiggi_base_config();
$OUT.=twiggi_custom_config("TWIGGIconfig");
$OUT.=twiggi_custom_config("TWIGGIdisabled");
$OUT.=twiggi_custom_config("TWIGGIdbconfig");
$OUT.=twiggi_esmith_users();
}
----------------------------------------10conf----------------------------------------------
There are the references... I am trying to figure out what they mean and whether they are the cause of my issue.
Craig