1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
|
--[[
Copyright (c) 2015, Vsevolod Stakhov <vsevolod@highsecure.ru>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
]]--
-- This plugin is intended to read and parse spamassassin rules with regexp
-- rules. SA plugins or statistics are not supported
local rspamd_logger = require "rspamd_logger"
local rspamd_regexp = require "rspamd_regexp"
local rspamd_expression = require "rspamd_expression"
local rspamd_mempool = require "rspamd_mempool"
local rspamd_trie = require "rspamd_trie"
local util = require "rspamd_util"
local _ = require "fun"
--local dumper = require 'pl.pretty'.dump
-- Known plugins
local known_plugins = {
'Mail::SpamAssassin::Plugin::FreeMail',
'Mail::SpamAssassin::Plugin::HeaderEval',
'Mail::SpamAssassin::Plugin::ReplaceTags'
}
-- Internal variables
local rules = {}
local atoms = {}
local metas = {}
local freemail_domains = {}
local freemail_trie
local replace = {
tags = {},
pre = {},
inter = {},
post = {},
rules = {}
}
local section = rspamd_config:get_all_opt("spamassassin")
-- Minimum score to treat symbols as meta
local meta_score_alpha = 0.5
-- Maximum size of regexp checked
local match_limit = 0
local function split(str, delim)
local result = {}
if not delim then
delim = '[^%s]+'
end
for token in string.gmatch(str, delim) do
table.insert(result, token)
end
return result
end
local function handle_header_def(hline, cur_rule)
--Now check for modifiers inside header's name
local hdrs = split(hline, '[^|]+')
local hdr_params = {}
local cur_param = {}
for i,h in ipairs(hdrs) do
if h == 'ALL' or h == 'ALL:raw' then
cur_rule['type'] = 'function'
-- Pack closure
local re = cur_rule['re']
local not_f = cur_rule['not']
local sym = cur_rule['symbol']
cur_rule['function'] = function(task)
local hdr = task:get_raw_headers()
if hdr then
local match = re:match(hdr)
if (match and not not_f) or
(not match and not_f) then
return 1
end
end
return 0
end
else
local args = split(h, '[^:]+')
cur_param['strong'] = false
cur_param['raw'] = false
cur_param['header'] = args[1]
if cur_param['header'] == 'MESSAGEID' then
-- Special case for spamassassin
cur_param['header'] = {'Message-ID', 'X-Message-ID', 'Resent-Message-ID'}
elseif cur_param['header'] == 'ToCc' then
cur_param['header'] = {'To', 'Cc', 'Bcc'}
end
_.each(function(func)
if func == 'addr' then
cur_param['function'] = function(str)
local addr_parsed = util.parse_addr(str)
local ret = {}
if addr_parsed then
for i,elt in ipairs(addr_parsed) do
if elt['addr'] then
table.insert(ret, elt['addr'])
end
end
end
return ret
end
elseif func == 'name' then
cur_param['function'] = function(str)
local addr_parsed = util.parse_addr(str)
local ret = {}
if addr_parsed then
for i,elt in ipairs(addr_parsed) do
if elt['name'] then
table.insert(ret, elt['name'])
end
end
end
return ret
end
elseif func == 'raw' then
cur_param['raw'] = true
elseif func == 'case' then
cur_param['strong'] = true
else
rspamd_logger.warn(string.format('Function %s is not supported in %s',
func, cur_rule['symbol']))
end
end, _.tail(args))
table.insert(hdr_params, cur_param)
end
cur_rule['header'] = hdr_params
end
end
local function freemail_search(input)
local res = 0
local function trie_callback(number, pos)
rspamd_logger.debugx('Matched pattern %1 at pos %2', freemail_domains[number], pos)
res = res + 1
end
if input then
freemail_trie:match(input, trie_callback, true)
end
return res
end
local function gen_eval_rule(arg)
local eval_funcs = {
{'check_freemail_from', function(task, remain)
local from = task:get_from()
if from then
return freemail_search(from[1]['addr'])
end
return 0
end},
{'check_freemail_replyto',
function(task, remain)
return freemail_search(task:get_header('Reply-To'))
end
},
{'check_freemail_header',
function(task, remain)
-- Remain here contains one or two args: header and regexp to match
local arg = string.match(remain, "^%(%s*['\"]([^%s]+)['\"]%s*%)$")
local re = nil
if not arg then
arg, re = string.match(remain, "^%(%s*['\"]([^%s]+)['\"]%s*,%s*['\"]([^%s]+)['\"]%s*%)$")
end
if arg then
local h = task:get_header(arg)
if h then
local hdr_freemail = freemail_search(h)
if hdr_freemail > 0 and re then
r = rspamd_regexp.create_cached(re)
if r then
r:match(h)
else
rspamd_logger.infox('cannot create regexp %1', re)
return 0
end
end
return hdr_freemail
end
end
return 0
end
},
}
for k,f in ipairs(eval_funcs) do
local pat = string.format('^%s', f[1])
local first,last = string.find(arg, pat)
if first then
local func_arg = string.sub(arg, last + 1)
return function(task)
return f[2](task, func_arg)
end
end
end
end
-- Returns parser function or nil
local function maybe_parse_sa_function(line)
local arg
local elts = split(line, '[^:]+')
arg = elts[2]
local func_cache = {}
rspamd_logger.debugx('trying to parse SA function %1 with args %2', elts[1], elts[2])
local substitutions = {
{'^exists:',
function(task) -- filter
if task:get_header(arg) then
return 1
end
return 0
end,
},
{'^eval:',
function(task)
local func = func_cache[arg]
if not func then
func = gen_eval_rule(arg)
func_cache[arg] = func
end
if not func then
rspamd_logger.errx('cannot find appropriate eval rule for function %1', arg)
else
return func(task)
end
return 0
end
},
}
for k,s in ipairs(substitutions) do
if string.find(line, s[1]) then
return s[2]
end
end
return nil
end
local function words_to_re(words, start)
return table.concat(_.totable(_.drop_n(start, words)), " ");
end
local function process_tflags(rule, flags)
_.each(function(flag)
if flag == 'publish' then
rule['publish'] = true
elseif flag == 'multiple' then
rule['multiple'] = true
elseif string.match(flag, '^maxhits=(%d+)$') then
rule['maxhits'] = tonumber(string.match(flag, '^maxhits=(%d+)$'))
elseif flag == 'nice' then
rule['nice'] = true
end
end, _.drop_n(1, flags))
end
local function process_replace(words, tbl)
local re = words_to_re(words, 2)
tbl[words[2]] = re
end
local function process_sa_conf(f)
local cur_rule = {}
local valid_rule = false
local function insert_cur_rule()
if cur_rule['type'] ~= 'meta' and cur_rule['publish'] then
-- Create meta rule from this rule
local nsym = '__fake' .. cur_rule['symbol']
local nrule = {
type = 'meta',
symbol = cur_rule['symbol'],
score = cur_rule['score'],
meta = nsym,
description = cur_rule['description'],
}
rules[nrule['symbol']] = nrule
cur_rule['symbol'] = nsym
end
-- We have previous rule valid
rules[cur_rule['symbol']] = cur_rule
cur_rule = {}
valid_rule = false
end
local skip_to_endif = false
for l in f:lines() do
(function ()
if string.len(l) == 0 or
_.nth(1, _.drop_while(function(c) return c == ' ' end, _.iter(l))) == '#' then
return
end
if skip_to_endif then
if string.match(l, '^endif') then
skip_to_endif = false
end
return
else
if string.match(l, '^ifplugin') then
local ls = split(l)
if not _.any(function(pl)
if pl == ls[2] then return true end
return false
end, known_plugins) then
skip_to_endif = true
end
end
end
local slash = string.find(l, '/')
-- Skip comments
words = _.totable(_.take_while(
function(w) return string.sub(w, 1, 1) ~= '#' end,
_.filter(function(w)
return w ~= "" end,
_.iter(split(l)))))
if words[1] == "header" then
-- header SYMBOL Header ~= /regexp/
if valid_rule then
insert_cur_rule()
end
if words[4] and (words[4] == '=~' or words[4] == '!~') then
cur_rule['type'] = 'header'
cur_rule['symbol'] = words[2]
if words[4] == '!~' then
cur_rule['not'] = true
end
cur_rule['re_expr'] = words_to_re(words, 4)
local unset_comp = string.find(cur_rule['re_expr'], '%s+%[if%-unset:')
if unset_comp then
-- We have optional part that needs to be processed
unset = string.match(string.sub(cur_rule['re_expr'], unset_comp),
'%[if%-unset:%s*([^%]%s]+)]')
cur_rule['unset'] = unset
-- Cut it down
cur_rule['re_expr'] = string.sub(cur_rule['re_expr'], 1, unset_comp - 1)
end
cur_rule['re'] = rspamd_regexp.create_cached(cur_rule['re_expr'])
if not cur_rule['re'] then
rspamd_logger.warn(string.format("Cannot parse regexp '%s' for %s",
cur_rule['re_expr'], cur_rule['symbol']))
else
handle_header_def(words[3], cur_rule)
end
if cur_rule['re'] and cur_rule['symbol'] and
(cur_rule['header'] or cur_rule['function']) then
valid_rule = true
cur_rule['re']:set_limit(match_limit)
end
else
-- Maybe we know the function and can convert it
local args = words_to_re(words, 2)
local func = maybe_parse_sa_function(args)
if func then
cur_rule['type'] = 'function'
cur_rule['symbol'] = words[2]
cur_rule['function'] = func
valid_rule = true
else
rspamd_logger.infox('unknown function %1', args)
end
end
elseif words[1] == "body" and slash then
-- body SYMBOL /regexp/
if valid_rule then
insert_cur_rule()
end
cur_rule['type'] = 'part'
cur_rule['symbol'] = words[2]
cur_rule['re_expr'] = words_to_re(words, 2)
cur_rule['re'] = rspamd_regexp.create_cached(cur_rule['re_expr'])
cur_rule['raw'] = true
if cur_rule['re'] and cur_rule['symbol'] then
valid_rule = true
cur_rule['re']:set_limit(match_limit)
end
elseif words[1] == "rawbody" or words[1] == "full" and slash then
-- body SYMBOL /regexp/
if valid_rule then
insert_cur_rule()
end
cur_rule['type'] = 'message'
cur_rule['symbol'] = words[2]
cur_rule['re_expr'] = words_to_re(words, 2)
cur_rule['re'] = rspamd_regexp.create_cached(cur_rule['re_expr'])
if cur_rule['re'] and cur_rule['symbol'] then
valid_rule = true
cur_rule['re']:set_limit(match_limit)
end
elseif words[1] == "uri" then
-- uri SYMBOL /regexp/
if valid_rule then
insert_cur_rule()
end
cur_rule['type'] = 'uri'
cur_rule['symbol'] = words[2]
cur_rule['re_expr'] = words_to_re(words, 2)
cur_rule['re'] = rspamd_regexp.create_cached(cur_rule['re_expr'])
if cur_rule['re'] and cur_rule['symbol'] then
valid_rule = true
cur_rule['re']:set_limit(match_limit)
end
elseif words[1] == "meta" then
-- meta SYMBOL expression
if valid_rule then
insert_cur_rule()
end
cur_rule['type'] = 'meta'
cur_rule['symbol'] = words[2]
cur_rule['meta'] = words_to_re(words, 2)
if cur_rule['meta'] and cur_rule['symbol'] then valid_rule = true end
elseif words[1] == "describe" and valid_rule then
cur_rule['description'] = words_to_re(words, 2)
elseif words[1] == "score" and valid_rule then
cur_rule['score'] = tonumber(words_to_re(words, 2))
elseif words[1] == 'freemail_domains' then
_.each(function(dom)
table.insert(freemail_domains, '@' .. dom)
end, _.drop_n(1, words))
elseif words[1] == 'tflags' then
process_tflags(cur_rule, words)
elseif words[1] == 'replace_tag' then
process_replace(words, replace['tags'])
elseif words[1] == 'replace_pre' then
process_replace(words, replace['pre'])
elseif words[1] == 'replace_inter' then
process_replace(words, replace['inter'])
elseif words[1] == 'replace_post' then
process_replace(words, replace['post'])
elseif words[1] == 'replace_rules' then
_.each(function(r) table.insert(replace['rules'], r) end,
_.drop_n(1, words))
end
end)()
end
if valid_rule then
insert_cur_rule()
end
end
if type(section) == "table" then
for k,fn in pairs(section) do
if k == 'alpha' and type(fn) == 'number' then
meta_score_alpha = fn
elseif k == 'match_limit' and type(fn) == 'number' then
match_limit = fn
else
f = io.open(fn, "r")
if f then
process_sa_conf(f)
end
end
end
end
-- Now check all valid rules and add the according rspamd rules
local function calculate_score(sym, rule)
if _.all(function(c) return c == '_' end, _.take_n(2, _.iter(sym))) then
return 0.0
end
if rule['nice'] or (rule['score'] and rule['score'] < 0.0) then
return -1.0
end
return 1.0
end
local function add_sole_meta(sym, rule)
local r = {
type = 'meta',
meta = rule['symbol'],
score = rule['score'],
description = rule['description']
}
rules[sym] = r
end
if freemail_domains then
freemail_trie = rspamd_trie.create(freemail_domains)
rspamd_logger.infox('loaded %1 freemail domains definitions', #freemail_domains)
end
local function sa_regexp_match(data, re, raw, rule)
local res = 0
if not re then
return 0
end
if rule['multiple'] then
local lim = -1
if rule['maxhits'] then
lim = rule['maxhits']
end
res = res + re:matchn(data, lim, raw)
else
if re:match(data, raw) then res = 1 end
end
return res
end
local function apply_replacements(str)
local pre = ""
local post = ""
local inter = ""
local function check_specific_tag(prefix, s, tbl)
local replacement = nil
local ret = s
_.each(function(n, t)
local ns,matches = string.gsub(s, string.format("<%s%s>", prefix, n), "")
if matches > 0 then
replacement = t
ret = ns
end
end, tbl)
return ret,replacement
end
local repl
str,repl = check_specific_tag("pre ", str, replace['pre'])
if repl then
pre = repl
end
str,repl = check_specific_tag("inter ", str, replace['inter'])
if repl then
inter = repl
end
str,repl = check_specific_tag("post ", str, replace['post'])
if repl then
post = repl
end
-- XXX: ugly hack
if inter then
str = string.gsub(str, "><", string.format(">%s<", inter))
end
local function replace_all_tags(s)
local str, matches
str = s
_.each(function(n, t)
str,matches = string.gsub(str, string.format("<%s>", n),
string.format("%s%s%s", pre, t, post))
end, replace['tags'])
return str
end
local s = replace_all_tags(str)
if str ~= s then
return true,s
end
return false,str
end
-- Replace rule tags
local ntags = {}
local function rec_replace_tags(tag, tagv)
if ntags[tag] then return ntags[tag] end
_.each(function(n, t)
if n ~= tag then
local s,matches = string.gsub(tagv, string.format("<%s>", n), t)
if matches > 0 then
ntags[tag] = rec_replace_tags(tag, s)
end
end
end, replace['tags'])
if not ntags[tag] then ntags[tag] = tagv end
return ntags[tag]
end
_.each(function(n, t)
rec_replace_tags(n, t)
end, replace['tags'])
_.each(function(n, t)
replace['tags'][n] = t
end, ntags)
_.each(function(r)
local rule = rules[r]
if rule['re_expr'] and rule['re'] then
local res,nexpr = apply_replacements(rule['re_expr'])
if res then
local nre = rspamd_regexp.create_cached(nexpr)
if not nre then
rspamd_logger.errx('cannot apply replacement for rule %1', r)
rule['re'] = nil
else
rspamd_logger.debugx('replace %1 -> %2', r, nexpr)
rule['re'] = nre
rule['re_expr'] = nexpr
nre:set_limit(match_limit)
end
end
end
end, replace['rules'])
-- Header rules
_.each(function(k, r)
local f = function(task)
local raw = false
local check = {}
_.each(function(h)
local headers = {}
if type(h['header']) == 'string' then
table.insert(headers, h['header'])
else
headers = h['header']
end
for i,hname in ipairs(headers) do
local hdr = task:get_header_full(hname, h['strong'])
if hdr then
for n, rh in ipairs(hdr) do
-- Subject for optimization
local str
if h['raw'] then
str = rh['value']
raw = true
else
str = rh['decoded']
end
if not str then return 0 end
if h['function'] then
str = h['function'](str)
end
if type(str) == 'string' then
table.insert(check, str)
else
for ii,c in ipairs(str) do
table.insert(check, c)
end
end
end
elseif r['unset'] then
table.insert(check, r['unset'])
end
end
end, r['header'])
if #check == 0 then
if r['not'] then return 1 end
return 0
end
for i,c in ipairs(check) do
local match = sa_regexp_match(c, r['re'], raw, r)
if (match and not r['not']) or (not match and r['not']) then
return match
end
end
return 0
end
if r['score'] then
local real_score = r['score'] * calculate_score(k, r)
if math.abs(real_score) > meta_score_alpha then
add_sole_meta(k, r)
end
end
--rspamd_config:register_symbol(k, calculate_score(k), f)
atoms[k] = f
end,
_.filter(function(k, r)
return r['type'] == 'header' and r['header']
end,
rules))
-- Custom function rules
_.each(function(k, r)
local f = function(task)
local res = r['function'](task)
if res > 0 then
return res
end
return 0
end
if r['score'] then
local real_score = r['score'] * calculate_score(k, r)
if math.abs(real_score) > meta_score_alpha then
add_sole_meta(k, r)
end
end
--rspamd_config:register_symbol(k, calculate_score(k), f)
atoms[k] = f
end,
_.filter(function(k, r)
return r['type'] == 'function' and r['function']
end,
rules))
-- Parts rules
_.each(function(k, r)
local f = function(task)
local parts = task:get_text_parts()
if parts then
for n, part in ipairs(parts) do
-- Subject for optimization
if not part:is_empty() then
local content = part:get_content()
local raw = false
if not part:is_utf() or r['raw'] then raw = true end
return sa_regexp_match(content, r['re'], raw, r)
end
end
end
return 0
end
if r['score'] then
local real_score = r['score'] * calculate_score(k, r)
if math.abs(real_score) > meta_score_alpha then
add_sole_meta(k, r)
end
end
--rspamd_config:register_symbol(k, calculate_score(k), f)
atoms[k] = f
end,
_.filter(function(k, r)
return r['type'] == 'part'
end,
rules))
-- Raw body rules
_.each(function(k, r)
local f = function(task)
return sa_regexp_match(task:get_content(), r['re'], true, r)
end
if r['score'] then
local real_score = r['score'] * calculate_score(k, r)
if math.abs(real_score) > meta_score_alpha then
add_sole_meta(k, r)
end
end
--rspamd_config:register_symbol(k, calculate_score(k), f)
atoms[k] = f
end,
_.filter(function(k, r)
return r['type'] == 'message'
end,
rules))
-- URL rules
_.each(function(k, r)
local f = function(task)
local urls = task:get_urls()
for _,u in ipairs(urls) do
local res = sa_regexp_match(u:get_text(), r['re'], true, r)
if res > 0 then
return res
end
end
return 0
end
if r['score'] then
local real_score = r['score'] * calculate_score(k, r)
if math.abs(real_score) > meta_score_alpha then
add_sole_meta(k, r)
end
end
--rspamd_config:register_symbol(k, calculate_score(k), f)
atoms[k] = f
end,
_.filter(function(k, r)
return r['type'] == 'uri'
end,
rules))
local sa_mempool = rspamd_mempool.create()
local function parse_atom(str)
local atom = table.concat(_.totable(_.take_while(function(c)
if string.find(', \t()><+!|&\n', c) then
return false
end
return true
end, _.iter(str))), '')
return atom
end
local function process_atom(atom, task)
local atom_cb = atoms[atom]
if atom_cb then
local res = task:cache_get(atom)
if res < 0 then
res = atom_cb(task)
task:cache_set(atom, res)
end
if not res then
rspamd_logger.debugx('atom: %1, NULL result', atom)
elseif res > 0 then
rspamd_logger.debugx('atom: %1, result: %2', atom, res)
end
return res
else
rspamd_logger.debugx('Cannot find atom ' .. atom)
end
return 0
end
-- Meta rules
_.each(function(k, r)
local expression = nil
-- Meta function callback
local meta_cb = function(task)
local res = task:cache_get(k)
if res < 0 then
res = 0
if expression then
res = expression:process(task)
end
task:cache_set(k, res)
end
if res > 0 then
task:insert_result(k, res)
end
return res
end
expression = rspamd_expression.create(r['meta'],
{parse_atom, process_atom}, sa_mempool)
if not expression then
rspamd_logger.err('Cannot parse expression ' .. r['meta'])
else
if r['score'] then
rspamd_config:set_metric_symbol(k, r['score'], r['description'])
end
rspamd_config:register_symbol(k, calculate_score(k, r), meta_cb)
if not atoms[k] then
atoms[k] = meta_cb
end
end
end,
_.filter(function(k, r)
return r['type'] == 'meta'
end,
rules))
|