[[PageOutline]] = Dealing with spam = Spammers may attack your project's web site in various ways: * Creating spam profiles. * Posting spam on the message boards. * Create teams whose descriptions are spam. The spam typically contains links to commercial web sites (for advertising, or to increase Google page rank). Spammers will use automated scripts to do these if they can, but they will also do them manually. == Cleaning up spam == The script '''html/ops/delete_spammers.php''' can be used to clean up spam. It deletes selected user accounts, including their profile and forum posts. The usage is {{{ delete_spammers.php [--days N] [--test] command }}} '''--days N''': if present, only items created in the last N days are deleted. '''--test''': if present, print the items that would be deleted, but don't delete them. '''command''' is one of: '''--profiles''': delete accounts that * have a profile containing a link * have no forum posts * have no hosts '''--forums''': delete accounts that * have no hosts * have forum posts * don't belong to a team (don't delete BOINC-wide team founders) '''--user_url''': delete accounts that * have no hosts * have no forum posts * have a nonempty URL '''--list filename''': The given file contains a list of user IDs, one per line. Delete these accounts. Use this only for accounts with no hosts. '''--id_range N M''': delete users with database IDs N to M inclusive. Use this only for accounts with no hosts. '''--teams''': delete teams that * have 0 or 1 members * have 0 total credit * are not BOINC-Wide teams * have descriptions containing a link == Preventing automated profile creation == === Using reCAPTCHA === To prevent automated profile creation, [http://recaptcha.net/ reCAPTCHA] system can be used. For every profile modification it displays an image containing text, which is recognizable to humans but not computers. In order to use reCAPTCHA, to register your web site on [http://recaptcha.net/] and acquire a set of keys. Once the web site is registered, add your keys to config.xml: {{{ Alphanumeric string Alphanumeric string }}} === Minimum credit === You may also require a minimum amount of credit to create or edit a profile. To do so, put a {{{}}} element in your [ProjectOptions config.xml] file == Using stopforumspam.com == http://www.stopforumspam.com is a service that maintains a database of spammer email addresses and IP addresses. If you include {{{ define("USE_STOPFORUMSPAM", true); }}} in your html/project/project.inc, this database will be checked before creating new accounts. == Protecting message boards from spam == === Akismet === BOINC message boards may be attacked by spammers. The anti-spam system from [http://www.akismet.com/ akismet.com] can be used to deal with this. 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. To use Akismet, 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. ''Note: If you are a commercial entity or if you are making more than $500 from your website, please get a commercial key instead.'' Once you have the key, you have to add a new tag to your [ProjectOptions config.xml] to enable the system: `1234567890ab` 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. === Minimum credit to post === You can require that users have a minimum amount of credit to post on a forum using the following database fields: '''forum.post_min_expavg_credit''':: users must have this amount of average credit to post on the forum '''forum.post_min_total_credit''':: users must have this amount of total credit to post on the forum There is currently no web interface for these; you have to set them manually using mysql or phpMyAdmin. These fields are at the forum level so that, for example, you can protect some forums while leaving a "Help" forum open.