You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rspamd.8 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .TH "RSPAMD" "8" "" "Rspamd User Manual" ""
  2. .SH NAME
  3. .PP
  4. rspamd \- main daemon for rapid spam filtering system
  5. .SH SYNOPSIS
  6. .PP
  7. rspamd [\f[I]options\f[]]...
  8. .PP
  9. rspamd \-\-help
  10. .SH DESCRIPTION
  11. .PP
  12. Rspamd filtering system is designed to be fast, modular and easily
  13. scalable system.
  14. Rspamd core is written in \f[C]C\f[] language using event driven
  15. processing model.
  16. Plugins for rspamd can be written in \f[C]Lua\f[] programming language.
  17. Rspamd is designed to process connections completely asynchronous and do
  18. not block anywhere in code.
  19. .SH OPTIONS
  20. .TP
  21. .B \-f, \-\-no\-fork
  22. Do not daemonize main process
  23. .RS
  24. .RE
  25. .TP
  26. .B \-c \f[I]path\f[], \-\-config=\f[I]path\f[]
  27. Specify config file(s)
  28. .RS
  29. .RE
  30. .TP
  31. .B \-u \f[I]username\f[], \-\-user=\f[I]username\f[]
  32. User to run rspamd as
  33. .RS
  34. .RE
  35. .TP
  36. .B \-g \f[I]groupname\f[], \-\-group=\f[I]groupname\f[]
  37. Group to run rspamd as
  38. .RS
  39. .RE
  40. .TP
  41. .B \-p \f[I]path\f[], \-\-pid=\f[I]path\f[]
  42. Path to pidfile
  43. .RS
  44. .RE
  45. .TP
  46. .B \-i, \-\-insecure
  47. Ignore running workers as privileged users (insecure)
  48. .RS
  49. .RE
  50. .SH EXAMPLES
  51. .PP
  52. Run rspamd daemon with default configuration:
  53. .IP
  54. .nf
  55. \f[C]
  56. rspamd
  57. \f[]
  58. .fi
  59. .PP
  60. Run rspamd in foreground with custom configuration:
  61. .IP
  62. .nf
  63. \f[C]
  64. rspamd\ \-f\ \-c\ ~/rspamd.conf
  65. \f[]
  66. .fi
  67. .PP
  68. Run rspamd specifying user and group:
  69. .IP
  70. .nf
  71. \f[C]
  72. rspamd\ \-u\ rspamd\ \-g\ rspamd\ \-c\ /etc/rspamd/rspamd.conf
  73. \f[]
  74. .fi
  75. .SH SEE ALSO
  76. .PP
  77. Rspamd documentation and source codes may be downloaded from
  78. <https://rspamd.com/>.