Stimmt so nicht, das DB-Passwort (“db_pass”) ist nicht verschlüsselt, nur config- und header-Passwort sind es:
$GLOBALS['egw_domain']['default'] = array(
'db_host' => 'db',
'db_port' => '3306',
'db_name' => 'egroupware',
'db_user' => 'egroupware',
'db_pass' => 'secret',
// Look at the README file
'db_type' => 'mysqli',
// This will limit who is allowed to make configuration modifications
'config_user' => 'admin',
'config_passwd' => '{crypt}$2a$12$.....'
);
Ralf