mirror of https://github.com/rspamd/rspamd.git
Rapid spam filtering system
https://rspamd.com/
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.
126 lines
2.5 KiB
126 lines
2.5 KiB
rspamd_config:register_symbol({
|
|
name = 'EXPRESSIONS_B',
|
|
score = 1.0,
|
|
callback = function()
|
|
return true, 'Fires always'
|
|
end
|
|
})
|
|
|
|
rspamd_config:register_symbol({
|
|
name = 'POLICY_REMOVE_WEIGHT_A',
|
|
score = 1.0,
|
|
callback = function()
|
|
return true, 'Fires always'
|
|
end
|
|
})
|
|
rspamd_config:register_symbol({
|
|
name = 'POLICY_REMOVE_WEIGHT_B',
|
|
score = 1.0,
|
|
callback = function()
|
|
return true, 'Fires always'
|
|
end
|
|
})
|
|
rspamd_config:register_symbol({
|
|
name = 'POLICY_FORCE_REMOVE_A',
|
|
score = 1.0,
|
|
callback = function()
|
|
return true, 'Fires always'
|
|
end
|
|
})
|
|
rspamd_config:register_symbol({
|
|
name = 'POLICY_FORCE_REMOVE_B',
|
|
score = 1.0,
|
|
callback = function()
|
|
return true, 'Fires always'
|
|
end
|
|
})
|
|
rspamd_config:register_symbol({
|
|
name = 'POLICY_LEAVE_A',
|
|
score = 1.0,
|
|
callback = function()
|
|
return true, 'Fires always'
|
|
end
|
|
})
|
|
rspamd_config:register_symbol({
|
|
name = 'POLICY_LEAVE_B',
|
|
score = 1.0,
|
|
callback = function()
|
|
return true, 'Fires always'
|
|
end
|
|
})
|
|
|
|
rspamd_config:register_symbol({
|
|
name = 'DEFAULT_POLICY_REMOVE_WEIGHT_A',
|
|
score = 1.0,
|
|
callback = function()
|
|
return true, 'Fires always'
|
|
end
|
|
})
|
|
rspamd_config:register_symbol({
|
|
name = 'DEFAULT_POLICY_REMOVE_WEIGHT_B',
|
|
score = 1.0,
|
|
callback = function()
|
|
return true, 'Fires always'
|
|
end
|
|
})
|
|
rspamd_config:register_symbol({
|
|
name = 'DEFAULT_POLICY_REMOVE_SYMBOL_A',
|
|
score = 1.0,
|
|
callback = function()
|
|
return true, 'Fires always'
|
|
end
|
|
})
|
|
rspamd_config:register_symbol({
|
|
name = 'DEFAULT_POLICY_REMOVE_SYMBOL_B',
|
|
score = 1.0,
|
|
callback = function()
|
|
return true, 'Fires always'
|
|
end
|
|
})
|
|
rspamd_config:register_symbol({
|
|
name = 'DEFAULT_POLICY_LEAVE_A',
|
|
score = 1.0,
|
|
callback = function()
|
|
return true, 'Fires always'
|
|
end
|
|
})
|
|
rspamd_config:register_symbol({
|
|
name = 'DEFAULT_POLICY_LEAVE_B',
|
|
score = 1.0,
|
|
callback = function()
|
|
return true, 'Fires always'
|
|
end
|
|
})
|
|
|
|
rspamd_config:register_symbol({
|
|
name = 'POSITIVE_A',
|
|
score = -1.0,
|
|
group = "positive",
|
|
callback = function()
|
|
return true, 'Fires always'
|
|
end
|
|
})
|
|
rspamd_config:register_symbol({
|
|
name = 'NEGATIVE_A',
|
|
score = -1.0,
|
|
group = "negative",
|
|
callback = function()
|
|
return true, 'Fires always'
|
|
end
|
|
})
|
|
rspamd_config:register_symbol({
|
|
name = 'NEGATIVE_B',
|
|
score = 1.0,
|
|
group = "negative",
|
|
callback = function()
|
|
return true, 'Fires always'
|
|
end
|
|
})
|
|
rspamd_config:register_symbol({
|
|
name = 'ANY_A',
|
|
score = -1.0,
|
|
group = "any",
|
|
callback = function()
|
|
return true, 'Fires always'
|
|
end
|
|
})
|