diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-11-05 12:26:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-05 12:26:23 +0000 |
commit | b50a6adffdd69334591b89ef07f3194cadb7d97c (patch) | |
tree | ace852d03e6a730bb6ea0e2e432841b19fa2ee14 /src | |
parent | 691a2be72ac81bbaa3fac400d505abeb02ee786f (diff) | |
parent | d0f1861eeab58e9ad4d3db2f30d5ae0e8a61a31a (diff) | |
download | rspamd-b50a6adffdd69334591b89ef07f3194cadb7d97c.tar.gz rspamd-b50a6adffdd69334591b89ef07f3194cadb7d97c.zip |
Merge pull request #1105 from fatalbanana/z
[Minor] Remove default message_func from greylist plugin
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/lua/greylist.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/plugins/lua/greylist.lua b/src/plugins/lua/greylist.lua index 68af9b933..9610f81d8 100644 --- a/src/plugins/lua/greylist.lua +++ b/src/plugins/lua/greylist.lua @@ -46,7 +46,6 @@ local settings = { key_prefix = 'rg', -- default hash name max_data_len = 10240, -- default data limit to hash message = 'Try again later', -- default greylisted message - message_func = function(task, finish, type) return settings.message end, symbol = 'GREYLIST', action = 'soft reject', -- default greylisted action ipv4_mask = 19, -- Mask bits for ipv4 |