(2003-2009) * @author Froxlor team (2010-) * @license GPLv2 http://files.froxlor.org/misc/COPYING.txt * @package Settings * */ return array( 'groups' => array( 'security' => array( 'title' => $lng['admin']['security_settings'], 'fields' => array( 'panel_unix_names' => array( 'label' => $lng['serversettings']['unix_names'], 'settinggroup' => 'panel', 'varname' => 'unix_names', 'type' => 'bool', 'default' => true, 'save_method' => 'storeSettingField', ), 'system_mailpwcleartext' => array( 'label' => $lng['serversettings']['mailpwcleartext'], 'settinggroup' => 'system', 'varname' => 'mailpwcleartext', 'type' => 'bool', 'default' => true, 'save_method' => 'storeSettingField', ), 'system_passwordcryptfunc' => array( 'label' => $lng['serversettings']['passwordcryptfunc'], 'settinggroup' => 'system', 'varname' => 'passwordcryptfunc', 'type' => 'option', 'default' => 0, 'option_mode' => 'one', 'option_options' => array(0 => $lng['serversettings']['systemdefault'], 1 => 'MD5', 2 => 'BLOWFISH', 3 => 'SHA-256', 4 => 'SHA-512'), 'save_method' => 'storeSettingField', ) ) ) ) );