aboutsummaryrefslogtreecommitdiffstats
path: root/conf/lua/rspamd.lua
diff options
context:
space:
mode:
Diffstat (limited to 'conf/lua/rspamd.lua')
-rw-r--r--conf/lua/rspamd.lua27
1 files changed, 27 insertions, 0 deletions
diff --git a/conf/lua/rspamd.lua b/conf/lua/rspamd.lua
new file mode 100644
index 000000000..0b64059e6
--- /dev/null
+++ b/conf/lua/rspamd.lua
@@ -0,0 +1,27 @@
+-- This is main lua config file for rspamd
+
+config['regexp'] = {}
+
+dofile('regexp/headers.lua')
+--dofile('regexp/lotto.lua')
+--dofile('regexp/fraud.lua')
+--dofile('regexp/drugs.lua')
+
+local reconf = config['regexp']
+
+-- Uncategorized rules
+
+local html_length_1024_1536 = 'has_content_part_len(\'text\', \'html\', 1024, 1536)'
+local html_link_image = '/<img /iPr'
+reconf['HTML_SHORT_LINK_IMG_2'] = string.format('(%s) & (%s)', html_length_1024_1536, html_link_image)
+
+-- Local rules
+local r_bgcolor = '/BGCOLOR=/iM'
+local r_font_color = '/font color=[\"\']?\#FFFFFF[\"\']?/iM'
+reconf['R_WHITE_ON_WHITE'] = string.format('(!(%s) & (%s))', r_bgcolor, r_font_color)
+reconf['R_NO_SPACE_IN_FROM'] = 'From=/\S<[-\w\.]+\@[-\w\.]+>/X'
+reconf['R_FLASH_REDIR_IMGSHACK'] = '/^(?:http:\/\/)?img\d{1,5}\.imageshack\.us\/\S+\.swf/U'
+local r_rcvd_from_valuehost = 'Received=/\sb0\.valuehost\.ru/H'
+local r_cyr_phone = '/8 \(\xD799\)/P'
+reconf['R_SPAM_FROM_VALUEHOST'] = string.format('(%s) & (%s)', r_rcvd_from_valuehost, r_cyr_phone)
+