blob: 5f6986f43524f2c48f741dcf738d12bc05461635 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Rspamd web interface
## Overview
This is a simple control interface for rspamd spam filtering system.
It provides basic functions for setting metric actions, scores,
viewing statistic and learning.
<img src="https://rspamd.com/img/webui.png" class="img-responsive" alt="Webui screenshot">
## Rspamd setup
It is required to configure dynamic settings to store configured values.
Basically this can be done by providing the following line in options settings:
~~~nginx
options {
dynamic_conf = "/var/lib/rspamd/rspamd_dynamic";
}
~~~
Please note that this path must have write access for rspamd user.
Then controller worker should be configured:
~~~nginx
worker {
type = "controller";
bind_socket = "localhost:11334";
count = 1;
# Password for normal commands
password = "q1";
# Password for privilleged commands
enable_password = "q2";
# Path to webiu static files
static_dir = "${WWWDIR}";
}
~~~
Password option should be changed for sure for your specific configuration. Encrypted password using is encouraged (`rspamadm pw --encrypt`).
## Interface setup
Interface itself is written in pure HTML5/js and, hence, it requires zero setup.
Just enter a password for webui access and you are ready.
## Contact information
Rspamd interface is distributed under the terms of [MIT license](http://opensource.org/licenses/MIT). For all questions related to this
product please see the [support page](https://rspamd.com/support.html)
|