reduceSpam/checkemail.php
2020-10-29 09:12:08 -04:00

12 lines
246 B
PHP

<?php
//updated by reducespam.org to remove dependancy on mysql database to use imap directly instead
include 'imap.php';
$email = '';
if(isset($_GET['email'])){
$email = ($_GET['email']);
echo join(",",getEmailIDs($email));
}
?>