Heres a simple way to do it, but you'll lose the ability to ban domains (which should'nt matter because you are only allowing certain domains anyway). What I am basicly going to do is take the Banned Email Addresses list and turn it into the Allowed Email Addresses list.
Open functions_register.php in a code editor, and find this block of code:
PHP Code:
// ###################### Start checkbannedemail #######################
function is_banned_email($email)
{
global $vboptions, $datastore;
if ($vboptions['enablebanning'] AND !empty($datastore['banemail']))
{
$bannedemails = preg_split('/\s+/', $datastore['banemail'], -1, PREG_SPLIT_NO_EMPTY);
foreach ($bannedemails AS $bannedemail)
{
if (is_valid_email($bannedemail))
{
$regex = '^' . preg_quote($bannedemail, '#') . '$';
}
else
{
$regex = preg_quote($bannedemail, '#');
}
if (preg_match("#$regex#i", $email))
{
return 1;
}
}
}
return 0;
}
Simple function, if a email address is on the list it returns 1, otherwise 0. Depending on what it returns an error is thrown letting the user know the email address they entered has been banned. So basicly by swaping the 0 and 1 you will reverse what triggers the error, which in this case would be a email address that is not on the list.
So our block of code becomes:
PHP Code:
// ###################### Start checkbannedemail #######################
function is_banned_email($email)
{
global $vboptions, $datastore;
if ($vboptions['enablebanning'] AND !empty($datastore['banemail']))
{
$bannedemails = preg_split('/\s+/', $datastore['banemail'], -1, PREG_SPLIT_NO_EMPTY);
foreach ($bannedemails AS $bannedemail)
{
if (is_valid_email($bannedemail))
{
$regex = '^' . preg_quote($bannedemail, '#') . '$';
}
else
{
$regex = preg_quote($bannedemail, '#');
}
if (preg_match("#$regex#i", $email))
{
return 0;
}
}
}
return 1;
}
Now navigate to vB admin cp -> vBulletin Options -> User banning options -> Banned Email Addresses and enter "@foo.com" (without quotes) in the textarea and anybody that registers will have to use an email address on the @foo.com domain.
This best thing about this approch is that it supports multiple domains, and its easy to add and modify them.