Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

README.md 1.8KB

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