Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. % RSPAMD(8) Rspamd User Manual
  2. # NAME
  3. rspamd - main daemon for rapid spam filtering system
  4. # SYNOPSIS
  5. rspamd [*options*]...
  6. rspamd --help
  7. # DESCRIPTION
  8. Rspamd filtering system is designed to be fast, modular and easily scalable system.
  9. Rspamd core is written in `C` language using event driven processing model.
  10. Plugins for rspamd can be written in `Lua` programming language.
  11. Rspamd is designed to process connections completely asynchronous and do not block anywhere in code.
  12. # OPTIONS
  13. -f, \--no-fork
  14. : Do not daemonize main process
  15. -c *path*, \--config=*path*
  16. : Specify config file(s)
  17. -u *username*, \--user=*username*
  18. : User to run rspamd as
  19. -g *groupname*, \--group=*groupname*
  20. : Group to run rspamd as
  21. -p *path*, \--pid=*path*
  22. : Path to pidfile
  23. -i, \--insecure
  24. : Ignore running workers as privileged users (insecure)
  25. # EXAMPLES
  26. Run rspamd daemon with default configuration:
  27. rspamd
  28. Run rspamd in foreground with custom configuration:
  29. rspamd -f -c ~/rspamd.conf
  30. Run rspamd specifying user and group:
  31. rspamd -u rspamd -g rspamd -c /etc/rspamd/rspamd.conf
  32. # SEE ALSO
  33. Rspamd documentation and source codes may be downloaded from
  34. <https://rspamd.com/>.