Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to require 'confirm by email' to create an account in mediawiki

Tags:

mediawiki

I have a site built on mediawiki. How do I ensure that to create a new account the user must first confirm his email by clicking a link sent to his email address?

like image 274
LTech Avatar asked Feb 20 '23 18:02

LTech


1 Answers

There is no built-in way to do that that I know of although you can get pretty close. The $wgEmailConfirmToEdit variable let's you prevent people from editing unless they have confirmed their email address. Just set:

$wgEmailConfirmToEdit = true;

in your LocalSettings.php

like image 115
Christian Avatar answered Mar 11 '23 12:03

Christian