Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moodlehq/moodle-block_spam_deletion
Spam deletion block for Moodle
https://github.com/moodlehq/moodle-block_spam_deletion
Last synced: about 2 months ago
JSON representation
Spam deletion block for Moodle
- Host: GitHub
- URL: https://github.com/moodlehq/moodle-block_spam_deletion
- Owner: moodlehq
- Created: 2012-09-21T02:46:52.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2015-06-04T15:06:35.000Z (over 9 years ago)
- Last Synced: 2023-03-11T01:20:04.062Z (almost 2 years ago)
- Language: PHP
- Homepage: https://moodle.org/plugins/view/block_spam_deletion
- Size: 430 KB
- Stars: 2
- Watchers: 8
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
Awesome Lists containing this project
README
Spam deletion block for Moodle
==============================The spam deletion block is used for detecting and deleting spam. The block adds "Report spam" action link into the forum pages and
comments. It lets the operator easily suspend spammer accounts and delete their contents.Post-installation setup
-----------------------* Add the block to the front page
* Edit the block settings
* Change 'Page contexts' to 'Display through the entire site'To let the block automatically detect and block spam-like forum posts, configure the setting `block_spam_deletion_badwords` and
append the following into your config.php file _after_ the setup.php inclusion:if ($SCRIPT === '/mod/forum/post.php') {
@include_once("$CFG->dirroot/blocks/spam_deletion/detect.php");
}Please check the code of that `detect.php` script to understand what criteria it uses to block forum posts. The current behaviour
has been tuned up to work well at moodle.org.See the discussion [Spam reporting and removal](https://moodle.org/mod/forum/discuss.php?d=218297) for further information and
tracker links.Maintainer
----------The block has been written and is currently maintained by Dan Poltawski. See [the block
page](https://moodle.org/plugins/view/block_spam_deletion) at Moodle Plugins directory for the full list of contributors.