diff options
author | Andrew Lewis <nerf@judo.za.org> | 2017-02-13 16:00:08 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2017-02-13 16:00:08 +0200 |
commit | a012de49ab77089d46e8810ce60b0d79fecbce50 (patch) | |
tree | c0906b3037fe89f4dfd326cfc4036f2ddd0672a4 /rules | |
parent | 05b34a3daca7afa635e99816b04922eb46bdb799 (diff) | |
download | rspamd-a012de49ab77089d46e8810ce60b0d79fecbce50.tar.gz rspamd-a012de49ab77089d46e8810ce60b0d79fecbce50.zip |
[Minor] Fix rules
Diffstat (limited to 'rules')
-rw-r--r-- | rules/misc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/misc.lua b/rules/misc.lua index 9127f68c9..d6d6909fc 100644 --- a/rules/misc.lua +++ b/rules/misc.lua @@ -693,7 +693,7 @@ rspamd_config:register_virtual_symbol('REPLYTO_DN_EQ_FROM_DN', 1.0, check_replyt rspamd_config:set_metric_symbol('REPLYTO_DN_EQ_FROM_DN', 0, 'Reply-To display name matches From') rspamd_config:register_virtual_symbol('REPLYTO_EMAIL_HAS_TITLE', 1.0, check_replyto_id) rspamd_config:set_metric_symbol('REPLYTO_EMAIL_HAS_TITLE', 2.0, check_replyto_id) -rspamd_config:register_dependency(check_replyto_id, check_from_id) +rspamd_config:register_dependency(check_replyto_id, 'FROM_NAME_HAS_TITLE') local check_mime_id = rspamd_config:register_callback_symbol('CHECK_MIME', 1.0, function (task) |