NAME

Antispam::Toolkit::Role::UsernameChecker - A role for classes which check whether an username is associated with spam

VERSION

version 0.08

SYNOPSIS

  package MyUsernameChecker;

  use Moose;

  with 'Antispam::Toolkit::Role::UsernameChecker';

  sub check_username { ... }

DESCRIPTION

This role specifies an interface for classes which check whether a specific username is associated with spam.

REQUIRED METHODS

Classes which consume this method must provide one method:

$checker->check_username( username => ... )

This method implements the actual spam checking for a username. The username will be passed as a named parameter.

METHODS

This role provides an around modifier for the $checker->check_username() 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)