forked from rspamd/rspamd.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
55 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
layout: doc | ||
title: About Rspamd | ||
--- | ||
# About Rspamd | ||
|
||
## Introduction | ||
|
||
**Rspamd** is an advanced spam filtering system that allows evaluation of messages by a number of | ||
rules including regular expressions, statistical analysis and custom services | ||
such as URL black lists. Each message is analysed by Rspamd and given a `spam score`. | ||
|
||
According to this spam score and the user's settings, Rspamd recommends an action for | ||
the MTA to apply to the message, for example, to pass, reject or add a header. | ||
Rspamd is designed to process hundreds of messages per second simultaneously, and provides a number of | ||
useful features. | ||
|
||
## Getting Started | ||
|
||
A good starting point to study how to install and configure Rspamd is [the quick start guide]({{ site.baseurl }}/doc/tutorials/quickstart.html). | ||
|
||
Rspamd is [packaged]({{ site.baseurl }}/downloads.html) for the major Linux distributions, and is also available via [FreeBSD ports](https://freshports.org/mail/rspamd){:target="_blank"}, NetBSD [pkgsrc](https://pkgsrc.org){:target="_blank"} and [OpenBSD ports](https://openports.pl/path/mail/rspamd){:target="_blank"}. | ||
|
||
You can also watch some [videos about Rspamd]({{ site.baseurl }}/media.html). | ||
|
||
## Spam filtering features | ||
|
||
Rspamd is shipped with various spam filtering modules and features enabled just out of the box. | ||
The full list of built-in modules could be found in the [modules documentation]({{ site.baseurl }}/doc/modules/). | ||
|
||
If that is not enough, Rspamd provides an extensive [Lua API]({{ site.baseurl }}/doc/lua/) to [write your own rules and plugins]({{ site.baseurl }}/doc/developers/writing_rules.html). | ||
|
||
|
||
## License | ||
|
||
This project is licensed under the [Apache 2.0 License](https://tldrlegal.com/license/apache-license-2.0-(apache-2.0)){:target="_blank"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
layout: doc | ||
title: Workers documentation | ||
description: Rspamd worker processes. | ||
--- | ||
# Rspamd workers | ||
|
||
|