The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Catalyst::Model::Akismet - Catalyst model for the Akismet anti-spam protocol

SYNOPSIS

    # Use the helper to add an Akismet model to your application...
    script/myapp_create.pl model Akismet Akismet


    # lib/MyApp/Model/Akismet.pm

    package MyApp::Model::Akismet;

    use base qw/ Catalyst::Model::Akismet /;

    __PACKAGE__->config(
        url => 'http://yourblog.com',
        key => 'SECRET',
        host => 'rest.akismet.com'
      );

    1;


    # In a controller...
    my $akismet = $c->model('Akismet');
    print ref($akismet);  # Net::Amazon::Akismet

DESCRIPTION

This is a Catalyst model class that interfaces with the Akismet anti- spam protocol. By default it will connect to typepad's antispam service.

METHODS

->new()

Instantiate a new Net::Amazon::Akismet Model. See Net::Akismet::Protocols's new method for the options available.

check

Check if a comment is spam. Sets user_ip, user_agent and referer and proxies to Net::Akismet::Protocol's check method. See that method for more info about parameters.

build_per_context_instance

akismet

Access the Net::Akismet::Protocol object directly.

Gets info about user. Called by Catalyst automatically.

SEE ALSO

Catalyst, Catalyst::Helper::Model::Akismet, Net::Akismet::Protocol

BUGS

Please report any bugs or feature requests to bug-catalyst-model-akismet at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Catalyst-Model-Akismet.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Catalyst::Model::Akismet

You may also look for information at:

AUTHOR

Marcus Ramberg <mramberg@cpan.org

COPYRIGHT AND LICENSE

Copyright (c) 2008 Marcus Ramberg.

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.