diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-12-22 17:34:00 +0300 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-12-22 17:34:00 +0300 |
commit | 501f1465ff2e985def4159ab32de267e7b111624 (patch) | |
tree | e46957c17ea70ce0a7d7176f7bd3a4f30e01076b | |
parent | 15b1e3856ab85a1bf101fc0f336c1376f4cb8b41 (diff) | |
download | rspamd-501f1465ff2e985def4159ab32de267e7b111624.tar.gz rspamd-501f1465ff2e985def4159ab32de267e7b111624.zip |
Misprint.
-rw-r--r-- | src/plugins/lua/received_rbl.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/received_rbl.lua b/src/plugins/lua/received_rbl.lua index 61b3da443..162add51e 100644 --- a/src/plugins/lua/received_rbl.lua +++ b/src/plugins/lua/received_rbl.lua @@ -71,7 +71,7 @@ if opts then for _,rbl in ipairs(rbls) do local s, _ = string.find(rbl, ':') if s then - rspamd_config:register_virtual_symbol((string.sub(rbl, s + 1, -1), 1) + rspamd_config:register_virtual_symbol(string.sub(rbl, s + 1, -1), 1) end end -- Register symbol's callback |