]> source.dussan.org Git - rspamd.git/commitdiff
[Fix] Fix greylist plugin (#755) 757/head
authorAndrew Lewis <nerf@judo.za.org>
Tue, 26 Jul 2016 15:29:47 +0000 (17:29 +0200)
committerAndrew Lewis <nerf@judo.za.org>
Tue, 26 Jul 2016 15:29:47 +0000 (17:29 +0200)
src/plugins/lua/greylist.lua

index 226d3eef23eaf375e8859454968e847c31b6e09a..1f62e6bda7ccd6b2758c668a0ff25765d77fe2b4 100644 (file)
@@ -216,19 +216,17 @@ local function greylist_check(task)
     end
   end
 
-  if addr then
-    local ret
-    ret,_,upstream = rspamd_redis_make_request(task,
-      redis_params, -- connect params
-      hash_key, -- hash key
-      false, -- is write
-      redis_get_cb, --callback
-      'MGET', -- command
-      {body_key, meta_key} -- arguments
-    )
-    if not ret then
-      rspamd_logger.errx(task, 'cannot make redis request to check results')
-    end
+  local ret
+  ret,_,upstream = rspamd_redis_make_request(task,
+    redis_params, -- connect params
+    hash_key, -- hash key
+    false, -- is write
+    redis_get_cb, --callback
+    'MGET', -- command
+    {body_key, meta_key} -- arguments
+  )
+  if not ret then
+    rspamd_logger.errx(task, 'cannot make redis request to check results')
   end
 end
 
@@ -330,7 +328,7 @@ if opts then
       priority = 10
     })
     rspamd_config:register_symbol({
-      name = 'GREYLIST_SAVE',
+      name = 'GREYLIST_CHECK',
       type = 'prefilter',
       callback = greylist_check,
     })