django-blog-zinnia / zinnia-spam-checker-akismet

Anti-spam protections via Akismet or Typepad for django-blog-zinnia

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Zinnia-spam-checker-akismet

Zinnia-spam-checker-akismet is a package providing spam protection on comments for django-blog-zinnia via Akismet or Typepad AntiSpam.

Installation

Simply install the package on your system:

$ pip install zinnia-spam-checker-akismet

The python-akismet will also be installed as a dependency.

Using Akismet

Put this setting to enable the Akismet spam checker backend:

ZINNIA_SPAM_CHECKER_BACKENDS = ('zinnia_akismet.akismet',)

Then define your API key in the settings:

AKISMET_API_KEY = 'Your key'

Get your free API key at http://akismet.com/signup/ if you don't have one.

Using Typepad AntiSpam

Put this setting to enable the Typepad spam checker backend:

ZINNIA_SPAM_CHECKER_BACKENDS = ('zinnia_akismet.typepad',)

Then define your API key in the settings:

TYPEPAD_API_KEY = 'Your key'

Why Typepad is included in this package ?

For conveniency because the Typepad AntiSpam use the same API as Akismet, they share the same dependancy to the python-akismet module.

Note that you can combine the two spam checkers like this:

ZINNIA_SPAM_CHECKER_BACKENDS = (
    'zinnia_akismet.akismet',
    'zinnia_akismet.typepad')

About

Anti-spam protections via Akismet or Typepad for django-blog-zinnia

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 100.0%