to preventing abusers, i would like to prevent non-confirmed users from editing/creating articles.
but I want to allow, to editing userpage. this should contain a template, which is to be filled, and checked. the user will then be asigned to group, which can edit/create articles. can this be achieved?
$wgGroupPermissions['*']['edit'] = false;
$wgGroupPermissions['user']['edit'] = false;
$wgGroupPermissions['xxx']['read'] = true;
$wgGroupPermissions['xxx']['edit'] = true;
$wgGroupPermissions['xxx']['createtalk'] = true;
$wgGroupPermissions['xxx']['createpage'] = true;
$wgGroupPermissions['xxx']['editmyoptions'] = true;
$wgGroupPermissions['xxx']['editmyprivateinfo'] = true;
$wgGroupPermissions['xxx']['writeapi'] = true;
$wgGroupPermissions['xxx']['editmywatchlist'] = true;
$wgGroupPermissions['xxx']['viewmyprivateinfo'] = true;
$wgGroupPermissions['xxx']['viewmywatchlist'] = true;
do i do something wrong ?