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.

surbl_group.conf 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. # URIBL rules scores
  2. #
  3. # Please don't modify this file as your changes might be overwritten with
  4. # the next update.
  5. #
  6. # You can modify '$LOCAL_CONFDIR/rspamd.conf.local.override' to redefine
  7. # parameters defined on the top level
  8. #
  9. # You can modify '$LOCAL_CONFDIR/rspamd.conf.local' to add
  10. # parameters defined on the top level
  11. #
  12. # For specific modules or configuration you can also modify
  13. # '$LOCAL_CONFDIR/local.d/file.conf' - to add your options or rewrite defaults
  14. # '$LOCAL_CONFDIR/override.d/file.conf' - to override the defaults
  15. #
  16. # See https://rspamd.com/doc/tutorials/writing_rules.html for details
  17. max_score = 12.5;
  18. symbols = {
  19. "SURBL_BLOCKED" {
  20. weight = 0.0;
  21. description = "SURBL: blocked by policy/overusage";
  22. }
  23. "PH_SURBL_MULTI" {
  24. weight = 5.5;
  25. description = "SURBL: Phishing sites";
  26. }
  27. "MW_SURBL_MULTI" {
  28. weight = 5.5;
  29. description = "SURBL: Malware sites";
  30. }
  31. "ABUSE_SURBL" {
  32. weight = 5.5;
  33. description = "SURBL: ABUSE";
  34. }
  35. "CRACKED_SURBL" {
  36. weight = 4.0;
  37. description = "SURBL: cracked site";
  38. }
  39. "RSPAMD_URIBL" {
  40. weight = 4.5;
  41. description = "Rspamd uribl, bl.rspamd.com";
  42. one_shot = true;
  43. }
  44. "RSPAMD_EMAILBL" {
  45. weight = 9.5;
  46. description = "Rspamd emailbl, bl.rspamd.com";
  47. one_shot = true;
  48. }
  49. "MSBL_EBL" {
  50. weight = 7.5;
  51. description = "MSBL emailbl";
  52. one_shot = true;
  53. }
  54. "MSBL_EBL_GREY" {
  55. weight = 0.5; # TODO: test it
  56. description = "MSBL emailbl grey list";
  57. one_shot = true;
  58. }
  59. "SEM_URIBL_UNKNOWN" {
  60. weight = 0.0;
  61. description = "Spameatingmonkey uribl: unknown result";
  62. }
  63. "SEM_URIBL" {
  64. weight = 3.5;
  65. description = "Spameatingmonkey uribl";
  66. }
  67. "SEM_URIBL_FRESH15_UNKNOWN" {
  68. weight = 0.0;
  69. description = "Spameatingmonkey Fresh15 uribl: unknown result";
  70. }
  71. "SEM_URIBL_FRESH15" {
  72. weight = 3.0;
  73. description = "Spameatingmonkey uribl. Domains registered in the last 15 days (.AERO,.BIZ,.COM,.INFO,.NAME,.NET,.PRO,.SK,.TEL,.US)";
  74. }
  75. "DBL" {
  76. weight = 0.0;
  77. description = "DBL unknown result";
  78. }
  79. "DBL_SPAM" {
  80. weight = 6.5;
  81. description = "DBL uribl spam";
  82. }
  83. "DBL_PHISH" {
  84. weight = 6.5;
  85. description = "DBL uribl phishing";
  86. }
  87. "DBL_MALWARE" {
  88. weight = 6.5;
  89. description = "DBL uribl malware";
  90. }
  91. "DBL_BOTNET" {
  92. weight = 5.5;
  93. description = "DBL uribl botnet C&C domain";
  94. }
  95. "DBL_ABUSE" {
  96. weight = 6.5;
  97. description = "DBL uribl abused legit spam";
  98. }
  99. "DBL_ABUSE_REDIR" {
  100. weight = 1.5;
  101. description = "DBL uribl abused spammed redirector domain";
  102. }
  103. "DBL_ABUSE_PHISH" {
  104. weight = 7.5;
  105. description = "DBL uribl abused legit phish";
  106. }
  107. "DBL_ABUSE_MALWARE" {
  108. weight = 7.5;
  109. description = "DBL uribl abused legit malware";
  110. }
  111. "DBL_ABUSE_BOTNET" {
  112. weight = 5.5;
  113. description = "DBL uribl abused legit botnet C&C";
  114. }
  115. "DBL_PROHIBIT" {
  116. weight = 0.00000;
  117. description = "DBL uribl IP queries prohibited!";
  118. }
  119. "URIBL_MULTI" {
  120. weight = 0.0;
  121. description = "uribl.com: unrecognised result";
  122. }
  123. "URIBL_BLOCKED" {
  124. weight = 0.0;
  125. description = "uribl.com: query refused";
  126. }
  127. "URIBL_BLACK" {
  128. weight = 7.5;
  129. description = "uribl.com black url";
  130. }
  131. "URIBL_RED" {
  132. weight = 3.5;
  133. description = "uribl.com red url";
  134. }
  135. "URIBL_GREY" {
  136. weight = 1.5;
  137. description = "uribl.com grey url";
  138. one_shot = true;
  139. }
  140. "SBL_URIBL" {
  141. weight = 0.0;
  142. description = "SBL URIBL: Filtered result";
  143. }
  144. "URIBL_SBL" {
  145. weight = 6.5;
  146. description = "Spamhaus SBL URIBL";
  147. }
  148. "URIBL_SBL_CSS" {
  149. weight = 6.5;
  150. description = "Spamhaus SBL CSS URIBL";
  151. }
  152. "RBL_SARBL_BAD" {
  153. weight = 2.5;
  154. description = "A domain listed in the mail is blacklisted in SARBL";
  155. }
  156. }