diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2023-06-04 16:36:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-04 16:36:57 +0100 |
commit | cbe316d09348232980a38a74650c1e93b84370fa (patch) | |
tree | 923e08b156ee4c1f5eba0054a53a6f454f7a1542 /rules | |
parent | 4cfad17e703ed28c48fd64df438f493f141b156e (diff) | |
parent | 433dc0e2d70d10a0fe8b78d27259660ae06b7514 (diff) | |
download | rspamd-cbe316d09348232980a38a74650c1e93b84370fa.tar.gz rspamd-cbe316d09348232980a38a74650c1e93b84370fa.zip |
Merge pull request #4495 from twesterhever/temp-onoin-url
[Minor] Move HAS_ONION_URI from "experimental" to "url" group
Diffstat (limited to 'rules')
-rw-r--r-- | rules/regexp/misc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/regexp/misc.lua b/rules/regexp/misc.lua index 66ba34996..4caa5da42 100644 --- a/rules/regexp/misc.lua +++ b/rules/regexp/misc.lua @@ -58,7 +58,7 @@ reconf['HAS_ONION_URI'] = { re = string.format('(%s | %s)', onion_uri_v2, onion_uri_v3), description = 'Contains .onion hidden service URI', score = 0.0, - group = 'experimental' + group = 'url' } local my_victim = [[/(?:victim|prey)/{words}]] |