This commit is contained in:
root 2010-08-18 16:05:13 +02:00
parent a70815967c
commit 15e7456aa8

View file

@ -49,10 +49,12 @@ class CAcert_User_Emails {
$row = $res->fetch(PDO::FETCH_ASSOC);
foreach ($variants as $variant) {
$emails[] = $variants . '@' . $row['domain'];
$emails[] = $variant . '@' . $row['domain'];
}
}
// Log::Log()->debug(__METHOD__ . ' addresses ' . implode(',', $emails));
return $emails;
}
}