Changes between Version 7 and Version 8 of ProtectionFromSpam
- Timestamp:
- Jan 29, 2010, 8:13:15 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ProtectionFromSpam
v7 v8 18 18 == Protecting message boards from spam == 19 19 20 BOINC message boards may occasionally suffer from attacks from spammers. In order to help moderators deal with unwanted messages, anti-spam system from [http://www.akismet.com/ akismet.com] can be used. 20 === Akismet === 21 BOINC message boards may occasionally suffer from attacks from spammers. 22 The anti-spam system from [http://www.akismet.com/ akismet.com] can be used to deal with this. 21 23 22 It is disabled by default; when enabled, every time a forum post is made a remote database at akismet.com is checked to see if the message is spam. If Akismet reports that the message is spam, it is blocked, notifying the user on screen. 24 It is disabled by default; when enabled, 25 every time a forum post is made a remote database at akismet.com is checked to see if the message is spam. 26 If Akismet reports that the message is spam, it is blocked, notifying the user on screen. 23 27 24 === Enabling Akismet === 25 In order to use Akismet anti-spam system, you have to acquire a free API key (12 character alphanumeric string). You can get the key by registering for a [http://www.wordpress.com/ WordPress.com] user account. The API key will be emailed to you after you register. 28 To use Akismet, you have to acquire a free API key (12 character alphanumeric string). 29 You can get the key by registering for a [http://www.wordpress.com/ WordPress.com] user account. 30 The API key will be emailed to you after you register. 26 31 27 32 ''Note: If you are a commercial entity or if you are making more than $500 from your website, please get a commercial key instead.'' … … 30 35 `<akismet_key>1234567890ab</akismet_key>` 31 36 32 To test if the system is working, create a user with name "''viagra-test-123''" (this is an official test string) and try creating a new thread. Akismet should block the message. 37 To test if the system is working, create a user with name "''viagra-test-123''" 38 (this is an official test string) and try creating a new thread. 39 Akismet should block the message. 40 41 === Minimum credit to post === 42 43 You can require that users have a minimum amount of credit to post 44 on a forum using the following database fields: 45 46 '''forum.post_min_expavg_credit''':: users must have this amount of average credit to post on the forum 47 '''forum.post_min_total_credit''':: users must have this amount of total credit to post on the forum 48 49 There is currently no web interface for these; you have to set them manually 50 using mysql or phpMyAdmin. 51 These fields are at the forum level so that, for example, you 52 can protect some forums while leaving a "Help" forum open.