]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Fix various issues
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 29 Jun 2017 18:28:38 +0000 (19:28 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 29 Jun 2017 18:28:38 +0000 (19:28 +0100)
lualib/lua_util.lua

index 457c2f7b2d99b2aa87f03cac9d6540f5a4892f48..8da8d2341dac4bc5a6ba469f668889483083b136 100644 (file)
@@ -2,7 +2,7 @@ local exports = {}
 local lpeg = require 'lpeg'
 
 local split_grammar = {}
-exports.rspamd_str_split = function(s, sep)
+local function rspamd_str_split(s, sep)
   local gr = split_grammar[sep]
 
   if not gr then
@@ -16,6 +16,8 @@ exports.rspamd_str_split = function(s, sep)
   return gr:match(s)
 end
 
+exports.rspamd_str_split = rspamd_str_split
+
 local space = lpeg.S' \t\n\v\f\r'
 local nospace = 1 - space
 local ptrim = space^0 * lpeg.C((space^0 * nospace^1)^0)
@@ -40,7 +42,7 @@ exports.template = function(tmpl, keys)
   return lpeg.match(template_grammar, tmpl)
 end
 
-exports.remove_email_aliases = function(addr)
+exports.remove_email_aliases = function(email_addr)
   local function check_gmail_user(addr)
     -- Remove all points
     local no_dots_user = string.gsub(addr.user, '.', '')
@@ -96,7 +98,7 @@ exports.remove_email_aliases = function(addr)
     return nil
   end
 
-  local function check_gmail(addr)
+  local function check_googlemail(addr)
     local nd = 'gmail.com'
     local nu, tags = check_gmail_user(addr)
 
@@ -112,18 +114,18 @@ exports.remove_email_aliases = function(addr)
     ['googlemail.com'] = check_googlemail,
   }
 
-  if addr then
-    if addr.domain and specific_domains[addr.domain] then
-      local nu, tags, nd = specific_domains[addr.domain](addr)
+  if email_addr then
+    if email_addr.domain and specific_domains[email_addr.domain] then
+      local nu, tags, nd = specific_domains[email_addr.domain](email_addr)
       if nu or nd then
-        set_addr(addr, nu, nd)
+        set_addr(email_addr, nu, nd)
 
         return nu, tags
       end
     else
-      local nu, tags, nd = check_address(addr)
+      local nu, tags, nd = check_address(email_addr)
       if nu or nd then
-        set_addr(addr, nu, nd)
+        set_addr(email_addr, nu, nd)
 
         return nu, tags
       end