|| ThrowTemplateError($template->error());
exit;
}
+
+ my $createexp = Param('createemailregexp');
+ if (!($createexp)
+ || ($login !~ /$createexp/)) {
+ ThrowUserError("account_creation_disabled");
+ exit;
+ }
# Create account
my $password = InsertNewUser($login, $realname);
default => ''
},
+ {
+ name => 'createemailregexp',
+ desc => 'This defines the regexp to use for email addresses that are ' .
+ 'permitted to self-register using a "New Account" feature. The ' .
+ 'default (.*) permits any account matching the emailregexp ' .
+ 'to be created. If this parameter is left blank, no users ' .
+ 'will be permitted to create their own accounts and all accounts ' .
+ 'will have to be created by an administrator',
+ type => 't',
+ default => q:.*:,
+ checker => \&check_regexp
+ },
+
{
name => 'voteremovedmail',
desc => 'This is a mail message to send to anyone who gets a vote removed ' .
[% UNLESS Param("useLDAP") %]
<hr>
- <p>
- If you don't have a Bugzilla account, you can
- <a href="createaccount.cgi">create a new account</a>.
- </p>
+ [% IF Param("createemailregexp") %]
+ <p>
+ If you don't have a Bugzilla account, you can
+ <a href="createaccount.cgi">create a new account</a>.
+ </p>
+ [% END %]
<form method="get" action="token.cgi">
<input type="hidden" name="a" value="reqpw">
[% ELSE %]
<td valign="middle" align="right">
- <a href="createaccount.cgi">New Account</a> |
+ [% IF Param('createemailregexp') %]
+ <a href="createaccount.cgi">New Account</a> |
+ [% END %]
<a href="query.cgi?GoAheadAndLogIn=1">Log In</a>
</td>
</tr>
to any [% parameters %] which you may have set before calling
ThrowUserError.
+ [% ELSIF error == "account_creation_disabled" %]
+ [% title = "Account Creation Disabled" %]
+ Account self-creation has been disabled or restricted.
+ <hr>
+ New accounts must be created by an administrator.
+
[% ELSIF error == "account_disabled" %]
[% title = "Account Disabled" %]
[% disabled_reason %]
<a href="relogin.cgi">Logout [% username FILTER html %]</a><br>
[% ELSE %]
<a href="query.cgi?GoAheadAndLogIn=1">Log in to an existing account</a><br>
- <a href="createaccount.cgi">Open a new Bugzilla account</a><br>
+ [% IF Param('createemailregexp') %]
+ <a href="createaccount.cgi">Open a new Bugzilla account</a><br>
+ [% END %]
[% END %]
</p><p>
<a href="javascript:addSidebar()">Add to Sidebar</a> (Requires Mozilla or Netscape 6)<br>