https://github.com/oetiker/mailrxmatcher
mail to text converter for spam keyword matching
https://github.com/oetiker/mailrxmatcher
automake mojolicious perl spam-filtering
Last synced: 3 months ago
JSON representation
mail to text converter for spam keyword matching
- Host: GitHub
- URL: https://github.com/oetiker/mailrxmatcher
- Owner: oetiker
- License: mit
- Created: 2019-11-20T14:43:31.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-11T07:27:55.000Z (about 5 years ago)
- Last Synced: 2025-01-22T09:42:12.828Z (4 months ago)
- Topics: automake, mojolicious, perl, spam-filtering
- Language: M4
- Size: 8.79 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
MailRxMatcher
=========Version: #VERSION#
Date: #DATE#mail-rx-match.pl extracts the text content from mail messages
trying its best to undo any encoding and quoting and html entity coding
the spammers are employing to obfuscate mail messages such that
spam checkers do not find keywords.`mail-rx-match.pl` is intended to be used in `.procmailrc` scripts like this:
```
# spam with image
:0 BH
* Content-Type.*jpeg
CATCH=| ./opt/mail2txt/bin/mail-rx-match.pl --charset=utf8 '(Bad|Ugly|Words)':0
* ? test "$CATCH" = MATCH
mail/spam
```It comes complete with a classic "configure - make - install" setup.
Setup
-----
In your app source directory and start building.```console
./configure --prefix=$HOME/opt/mail-rx-match
make
```Configure will check if all requirements are met and give
hints on how to fix the situation if something is missing.Any missing perl modules will be downloaded and built.
Installation
------------To install the application, just run
```console
make install
```Enjoy!
Tobias Oetiker