Sollte so gehen:

Code:
Gehört in die anmelden.php: 

Suche: 

if ($_POST['passwort_1'] != $_POST['passwort_2']) $error .= 'Passwörter stimmen nicht überein!<br>'; 

Füge danach ein: 

// Maildomains ausschliessen 
$emaildomains = array("@yahoo", "@hotmail", "@firemail", "@spam", ".pl", ".cz", ".cs", ".nu", ".ru", ".nu", ".hu", ".cn", ".hk", ".jp", ".tw"); 
foreach ($emaildomains as $example) { 
if (eregi($example, $_POST['emailadresse'])) { 
$error .= 'Emailadressen von der Maildomain <i>'.$example.'</i> sind nicht zul&auml;ssig!<br>'; 
} 
}
Gruß

EarlofMidnight