20 lines
694 B
PHP
20 lines
694 B
PHP
<?php
|
|
|
|
/*
|
|
* email_validation.inc
|
|
* $Id: email-validation.inc,v 1.3 2006/07/05 04:17:40 sfox Exp $
|
|
*/
|
|
|
|
/* Try to keep 'badwords' up to date, there are rarely more than 5 per category */
|
|
$badwords = array(' drugs ', 'viagra', ' cialis ', 'levitra', 'pharmac', // drugs
|
|
' sex ', 'lesbian', ' porn ', ' chicks ', 'fuck', // sex
|
|
'gambling', 'casino', 'poker', 'blackjack', // gambling
|
|
' loans ', 'mortgage', 'make money', // finance
|
|
);
|
|
|
|
/* Stole this wholesale from master, but someone might know a better one... */
|
|
$email_regex = ":^([-!#\$%&'*+./0-9=?A-Z^_`a-z{|}~ ])+" .
|
|
"@([-!#\$%&'*+/0-9=?A-Z^_`a-z{|}~ ]+\\.)+" .
|
|
"[a-zA-Z]{2,6}\$:i";
|
|
|
|
?>
|