Edgewall Software

Changes between Version 130 and Version 131 of SpamFilter


Ignore:
Timestamp:
Apr 23, 2018, 4:00:11 PM (6 years ago)
Author:
Ryan J Ollos
Comment:

Mollom removed.

Legend:

Unmodified
Added
Removed
Modified
  • SpamFilter

    v130 v131  
    88 * Train Bayes database using the entries of the log to activate that filter and reach good performance. The Bayes filter requires spambayes.
    99 * Setup !BadContent page containing regular expressions to filter.
    10  * Get API keys for Akismet, Mollom, and/or HTTP:BL to use external services.
     10 * Get API keys for Akismet, and/or HTTP:BL to use external services.
    1111 * Activate captcha rejection handler to improve user treatment; requires reCAPTCHA access when that method is used.
    1212 * Finetune the karma settings and parameters for your system, eg you may increase karma for good trained Bayes filters or stop trusting registered users.
     
    6969 * External reCAPTCHA service: To use reCAPTCHA captcha method, you'll need to sign up at [https://www.google.com/recaptcha/intro/index.html] and set the keys at 'Captcha' administration page.
    7070 * External !KeyCaptcha service: To use !KeyCaptcha captcha method, you'll need to sign up at [http://www.keycaptcha.com/] and set the user id and key at 'Captcha' administration page. Note: requires JavaScript at the user side.
    71  * External Mollom service. To use this method you need to sign up at [http://mollom.com/ Mollom web service] and set the keys at 'External' administration page. It's also a spam check service, [[#Mollom|see below]].
    7271
    7372The captcha in spamfilter is a rejection system: they are only displayed to the user when otherwise a submission would be rejected as spam. In this case a successfully solved captcha can increase the score of a transmission. If a transmission has too many spam points even a successfully solved captcha can't save it, ie the score is 30 and a captcha only removed 20 points.
     
    139138'''Note''': Submitted content is sent to Akismet servers. Don't use this in private environments.
    140139
    141 === Mollom
    142 
    143 The [source:plugins/1.0/spam-filter/tracspamfilter/filters/mollom.py Mollom] filter uses the [http://mollom.com/ Mollom web service] to check content for possible spam.
    144 
    145 The use of this filter requires API keys. These API keys are configured in the 'External' administration page.
    146 
    147 '''Note''': Submitted content is sent to Mollom servers. Don't use this in private environments.
    148 
    149140=== !StopForumSpam
    150141
     
    280271* The !ImageCaptcha requires [pypi:pillow] to work.
    281272* Bayes filtering requires [pypi:spambayes].
    282 * Mollom filter requires [pypi:oauth2] and [pypi:httplib2].
    283273
    284274The packages can be installed using `pip install <packagename>`.