Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

1234567891011
  1. rspamd_config.SINGLE_SHORT_PART = {
  2. callback = function(task)
  3. local parts = task:get_parts()
  4. if #parts ~= 1 then return end
  5. local text = parts[1]:get_text()
  6. if not text then return end
  7. if text:get_length() >= 64 then return end
  8. return true
  9. end,
  10. score = 0.0,
  11. }