Skip to main content

A Django app that contributes Akismet and Keyword blocking to your django comments.

Project description

This Django application contributes a moderation class to Django’s comment app that provides:

  • Check incoming comments against the Akismet spam database and either block them directly or add them to the moderation queue.

  • Check incoming comments against pre-defined keywords and either block them directly or add these them to the moderation queue. These keywords can be simple strings or powerful regular expressions.

The documentation is online:

http://docs.mahner.org/django-comments-spamfighter/

Quick installation

Here is a quick installation guide for users who are familiar with comment moderation:

from comments_spamfighter.moderation import SpamFighterModerator

class EntryModerator(SpamFighterModerator):

    # Regular options by django's contributed CommentModerator

    auto_moderate_field = 'created'
    email_notification = True


    # Spam fighter options

    # Check with Akismet for spam
    akismet_check = False

    # If Akismet marks this message as spam, delete it instantly (False) or
    # add it the comment the moderation queue (True). Default is True.
    akismet_check_moderate = True

    # Do a keyword check
    keyword_check = True

    # If a keyword is found, delete it instantly (False) or add the comment to
    # the moderation queue (True). Default is False.
    keyword_check_moderate = False

moderator.register(Entry, EntryModerator)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-comments-spamfighter-0.4.tar.gz (4.6 kB view details)

Uploaded Source

File details

Details for the file django-comments-spamfighter-0.4.tar.gz.

File metadata

File hashes

Hashes for django-comments-spamfighter-0.4.tar.gz
Algorithm Hash digest
SHA256 186073352f7abc705ec42f2fda347a3e3948e23cf32c3a6b5d93fe939be3bcc5
MD5 02d59f0b00ded5625713a0714a81b6bb
BLAKE2b-256 db28693d63efd7db71fbb53e4fa340036ccef7391b0dd57743e141eadc23cbbb

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page