Take me over?
NAME
Antispam::Toolkit::Role::EmailChecker - A role for classes which check whether an email is associated with spam
VERSION
version 0.08
SYNOPSIS
package MyEmailChecker;
use Moose;
with 'Antispam::Toolkit::Role::EmailChecker';
sub check_email { ... }
DESCRIPTION
This role specifies an interface for classes which check whether a specific email address is associated with spam.
REQUIRED METHODS
Classes which consume this method must provide one method:
$checker->check_email( email => ... )
This method implements the actual spam checking for an email address. The email will be passed as a named parameter.
METHODS
This role provides an around modifier for the $checker->check_email()
method. The modifier does validation on all the parameters, so there's no need to implement this in the class itself.
BUGS
See Antispam::Toolkit for bug reporting details.
AUTHOR
Dave Rolsky <autarch@urth.org>
COPYRIGHT AND LICENSE
This software is Copyright (c) 2011 by Dave Rolsky.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)