make verify_email the default for new installs (at least English installs), and provide a setting on the admin page for it.

This commit is contained in:
friendica
2014-09-10 17:42:13 -07:00
parent 79bd451631
commit 6ab21b3d4f
3 changed files with 9 additions and 1 deletions

View File

@@ -45,6 +45,11 @@ $a->config['system']['register_policy'] = REGISTER_OPEN;
$a->config['system']['register_text'] = '';
$a->config['system']['admin_email'] = '{{$adminmail}}';
// Recommend you leave this set to 1. Set to 0 to let people register without
// proving they own the email address they register with.
$a->config['system']['verify_email'] = 1;
// Site access restrictions. By default we will create private sites.
// Your choices are ACCESS_PRIVATE, ACCESS_PAID, ACCESS_TIERED, and ACCESS_FREE.