rspamd
TLDR
Start Rspamd
$ rspamd
Start with config file$ rspamd -c [/etc/rspamd/rspamd.conf]
Test mode$ rspamd -t
Foreground mode$ rspamd -f
Start via systemd$ sudo systemctl start rspamd
SYNOPSIS
rspamd [options]
DESCRIPTION
Rspamd is a fast, free spam filtering system written in C. It uses machine learning, neural networks, and various rules to identify spam with high accuracy and low resource usage.
PARAMETERS
-c, --config file
Configuration file.-f, --no-fork
Run in foreground.-t, --test-config
Test configuration.-u, --user user
Run as user.-g, --group group
Run as group.
EXAMPLES
$ # Start daemon
rspamd
# Test configuration
rspamd -t
# Via systemctl
sudo systemctl start rspamd
sudo systemctl enable rspamd
# Check message
rspamc < message.eml
# Check message with details
rspamc -v < message.eml
# Web interface (default)
# http://localhost:11334/
rspamd
# Test configuration
rspamd -t
# Via systemctl
sudo systemctl start rspamd
sudo systemctl enable rspamd
# Check message
rspamc < message.eml
# Check message with details
rspamc -v < message.eml
# Web interface (default)
# http://localhost:11334/
CONFIGURATION
$ /etc/rspamd/rspamd.conf - Main config
/etc/rspamd/local.d/ - Local overrides
/etc/rspamd/override.d/ - Full overrides
/etc/rspamd/local.d/ - Local overrides
/etc/rspamd/override.d/ - Full overrides
PORTS
$ 11333 - Worker (milter)
11334 - Web interface
11335 - Controller
11334 - Web interface
11335 - Controller
CAVEATS
Configure milter integration with MTA. Train Bayes for best results. Web UI password in worker-controller.inc.
HISTORY
Rspamd was created by Vsevolod Stakhov starting in 2008 as a fast, extensible spam filtering system.
SEE ALSO
rspamadm(1), rspamc(1), spamassassin(1)


