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.

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. }