my $config = Configuration->new(file => "config",                                 path => "./"); $config->open_file(); my %hash = $config->get_config(); # Gibt 'mysql' aus... print $hash{Server} . "\n"; # Klappt auch wunderbar... $hash{Server} = "test";