diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2017-01-23 11:34:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-23 11:34:15 +0000 |
commit | 9fe28b44637d2ea5faa08c4f2a7765ef19ed645a (patch) | |
tree | 3f1cc4ec3bb10402cb74f895367fa5d47a5de964 /src/plugins | |
parent | c8d0cb90a0715edd05a9b8b71734302b42ebc935 (diff) | |
parent | ba8ca069db2bb8f44bd09635f8d7fe56cda13813 (diff) | |
download | rspamd-9fe28b44637d2ea5faa08c4f2a7765ef19ed645a.tar.gz rspamd-9fe28b44637d2ea5faa08c4f2a7765ef19ed645a.zip |
Merge pull request #1363 from fatalbanana/cos
Force Actions: [Minor] Cosmetic fix for symbol name
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/lua/force_actions.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/force_actions.lua b/src/plugins/lua/force_actions.lua index 011d9bda1..66c23d773 100644 --- a/src/plugins/lua/force_actions.lua +++ b/src/plugins/lua/force_actions.lua @@ -43,7 +43,7 @@ local function configure_module() local message = (opts.messages or E)[symbol] local id = rspamd_config:register_symbol({ type = 'normal', - name = 'FORCE_ACTION_ON' .. symbol, + name = 'FORCE_ACTION_ON_' .. symbol, callback = gen_cb(symbol, action, message), }) rspamd_config:register_dependency(id, symbol) |