選択できるのは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. }