1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
trac-spamfilter for Debian
--------------------------
CONTENTS
1. Enabling trac-spamfilter globally
2. Enabling trac-spamfilter per project
3. Configuring the Akismet plugin
Enabling trac-spamfilter globally
=================================
To enable, create or edit /etc/trac.ini and add:
[components]
tracspamfilter.* = enabled
You must restart tracd or your webserver for your changes to take effect. You
may also need to perform "trac-admin upgrade <projectenv>".
Enabling trac-spamfilter per project
====================================
Edit the <projectenv>/conf/trac.ini file and the following:
[components]
tracspamfilter.* = enabled
You must restart tracd or your webserver for the changes to take effect. You
may also need to run "trac-admin upgrade <projectenv>".
Configuring the Akismet plugin
==============================
You can use trac-spamfilter with the Akismet web service to check content
for spam. For more information, please see <http://www.akismet.com/>.
This filter requires a Wordpress API key. To configure your key, create or
edit the following section in <projectenv>/conf/trac.ini or /etc/trac.ini:
[spam-filter]
akismet_api_key = 1234567890
You must restart tracd or your webserver for the changes to take effect.
-- Chris Lamb <chris@chris-lamb.co.uk> Tue, 22 Apr 2008 05:30:41 +0100
|