|
Revision 172, 491 bytes
(checked in by haypo, 9 months ago)
|
Add version and website
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
Antispam is a Python script used to detected spam with simple rules. |
|---|
| 2 |
Rules: |
|---|
| 3 |
* match word from whitelist or blacklist |
|---|
| 4 |
* find url |
|---|
| 5 |
|
|---|
| 6 |
Website: http://haypo.hachoir.org/trac/wiki/antispam |
|---|
| 7 |
|
|---|
| 8 |
Word list |
|---|
| 9 |
========= |
|---|
| 10 |
|
|---|
| 11 |
Word list files are text files. If a line contains a ":", |
|---|
| 12 |
the value after ":" is the score (floating point number). |
|---|
| 13 |
|
|---|
| 14 |
Example: :: |
|---|
| 15 |
|
|---|
| 16 |
viagra:5 |
|---|
| 17 |
porn |
|---|
| 18 |
|
|---|
| 19 |
In this example, viagra has as score of 5 and porn a score of 1. |
|---|
| 20 |
|
|---|
| 21 |
ChangeLog |
|---|
| 22 |
========= |
|---|
| 23 |
|
|---|
| 24 |
Version 0.1 (xxx): |
|---|
| 25 |
|
|---|
| 26 |
* First public release |
|---|
| 27 |
|
|---|