您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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