• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/H13-Dec-2021-11981

centos/H13-Dec-2021-481390

clang-plugin/H03-May-2022-933754

cmake/H13-Dec-2021-1,6691,468

conf/H13-Dec-2021-8,0866,298

contrib/H13-Dec-2021-205,774153,227

debian/H07-May-2022-709569

doc/H13-Dec-2021-1,7221,385

docker/H13-Dec-2021-6758

freebsd/H13-Dec-2021-14391

interface/H03-May-2022-1,8411,743

lualib/H13-Dec-2021-31,01623,150

rules/H13-Dec-2021-5,0583,998

src/H03-May-2022-243,357184,254

test/H07-May-2022-54,84950,195

utils/H03-May-2022-4,8743,583

.drone.ymlH A D13-Dec-202110.3 KiB282264

.eslintrc.jsonH A D13-Dec-20212.6 KiB7673

.gitignoreH A D13-Dec-2021316 2726

.luacheckrcH A D13-Dec-20211.4 KiB7866

.stylelintrc.jsonH A D13-Dec-2021840 3231

.tidyallrcH A D13-Dec-2021515 2316

AUTHORS.mdH A D13-Dec-2021733 3118

CONTRIBUTING.mdH A D13-Dec-20216.3 KiB10368

ChangeLogH A D13-Dec-2021285.8 KiB6,0335,911

LICENSE.mdH A D13-Dec-20219.1 KiB170138

README.mdH A D13-Dec-20212.9 KiB5228

blas-config.h.inH A D13-Dec-2021282 119

config.h.inH A D13-Dec-202111.3 KiB426376

dist.shH A D13-Dec-2021828 3016

lua_style.mdH A D13-Dec-202113.8 KiB733534

package.jsonH A D13-Dec-2021274 1413

rspamd.serviceH A D13-Dec-2021386 1815

set-version.shH A D13-Dec-2021480 1511

uncrustify.cfgH A D13-Dec-20213.3 KiB135134

uncrustify.shH A D13-Dec-2021395 129

README.md

1# <a href="https://rspamd.com"><img src="https://rspamd.com/img/rspamd_logo_black.png" alt="Rspamd" width="220px"/></a>
2
3[![DroneCI](https://ci.rspamd.com/api/badges/rspamd/rspamd/status.svg)](https://ci.rspamd.com/rspamd/rspamd)
4
5
6## Introduction
7
8[Rspamd](https://rspamd.com) is an advanced spam filtering system and email processing framework that allows evaluation of messages by a number of
9rules including regular expressions, statistical analysis and custom services
10such as URL black lists. Each message is analysed by Rspamd and given a verdict that might be used by MTA for further processing (e.g. to reject a message, or add a special header indicating spam) along with other information, such as possible DKIM signature or modifications suggested for a message.
11
12Rspamd can act as a [Milter](https://en.wikipedia.org/wiki/Milter) allowing direct interaction with popular MTA systems, such as Postfix or Sendmail.
13
14Rspamd is designed to process hundreds of messages per second simultaneously, and provides a number of
15useful features including a comprehensive [Lua API](https://rspamd.com/doc/lua/) that allows access to messages processing in various aspects as well as [asynchronous](https://rspamd.com/doc/lua/sync_async.html) network API to access external resources, such as DNS, HTTP or even generic TCP/UDP services.
16
17
18## Getting Started
19
20A good starting point to study how to install and configure Rspamd is [the quick start guide](https://rspamd.com/doc/quickstart.html).
21
22Rspamd is [packaged](https://rspamd.com/downloads.html) for the major Linux distributions, and is also available via [FreeBSD ports](https://freshports.org/mail/rspamd), NetBSD [pkgsrc](https://pkgsrc.org) and [OpenBSD ports](http://openports.se/mail/rspamd).
23
24We advice to use packages provided by Rspamd project if available for your OS instead of packages that might be provided by some Linux distributives, as they are usually out of date and does not provide the desired spam filtering quality nor supported by Rspamd project.
25
26## Spam filtering features
27
28Rspamd is shipped with various spam filtering modules and features enabled just out of the box.
29The full list of built-in modules could be found in the [Rspamd documentation](https://rspamd.com/doc/modules/).
30
31If that is not enough, Rspamd provides an extensive [Lua API](https://rspamd.com/doc/lua/) to write your own rules and plugins: <https://rspamd.com/doc/tutorials/writing_rules.html>
32
33## Contributing
34
35Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on the process for submitting pull requests to us.
36
37## Authors
38
39* **Vsevolod Stakhov** - [vstakhov](https://github.com/vstakhov)
40
41See also the list of [contributors](AUTHORS.md) who participated in this project.
42
43## License
44
45This project is licensed under the Apache 2.0 License - see the [LICENSE.md](LICENSE.md) file for details
46
47## References
48
49* Home site: <https://rspamd.com>
50* Development: <https://github.com/rspamd/rspamd>
51* Site repository: <https://github.com/rspamd/rspamd.com>
52