diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2017-05-28 15:35:52 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2017-05-28 15:35:52 +0100 |
commit | 2537eae679525933014b0f3d8aab3844434ec1c7 (patch) | |
tree | b0919461119feb1c59a79a49de82331f9e4cc7ec | |
parent | 907cea71d114e3e8f9829e82870566e84bdaf6c0 (diff) | |
download | rspamd-2537eae679525933014b0f3d8aab3844434ec1c7.tar.gz rspamd-2537eae679525933014b0f3d8aab3844434ec1c7.zip |
[Minor] Try to be slightly more consistent in symbol names for ARC
-rw-r--r-- | src/plugins/lua/arc.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/lua/arc.lua b/src/plugins/lua/arc.lua index e18f0001c..8a7bcc635 100644 --- a/src/plugins/lua/arc.lua +++ b/src/plugins/lua/arc.lua @@ -35,11 +35,11 @@ local dkim_canonicalize = rspamd_plugins.dkim.canon_header_relaxed local redis_params local arc_symbols = { - allow = 'ARC_POLICY_ALLOW', - invalid = 'ARC_BAD_POLICY', + allow = 'ARC_ALLOW', + invalid = 'ARC_INVALID', dnsfail = 'ARC_DNSFAIL', na = 'ARC_NA', - reject = 'ARC_POLICY_REJECT', + reject = 'ARC_REJECT', } local symbols = { |