diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2017-09-11 21:02:07 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2017-09-11 21:02:07 +0100 |
commit | 7d128832b71712049d024f34f0a70f59ba2fa18c (patch) | |
tree | 0a15371fcac83e0752762d0cd69dae687303a3df /src | |
parent | 41d011ec6384589ebb8cc64fbea2abd937f5e478 (diff) | |
download | rspamd-7d128832b71712049d024f34f0a70f59ba2fa18c.tar.gz rspamd-7d128832b71712049d024f34f0a70f59ba2fa18c.zip |
[Minor] Fix misprint
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/lua/antivirus.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/lua/antivirus.lua b/src/plugins/lua/antivirus.lua index d6769071a..baa876d4e 100644 --- a/src/plugins/lua/antivirus.lua +++ b/src/plugins/lua/antivirus.lua @@ -269,7 +269,7 @@ local function message_not_too_large(task, rule) local max_size = tonumber(rule['max_size']) if not max_size then return true end if task:get_size() > max_size then - rspamd_loger.infox("skip %s AV check as it is too large: %s (%s is allowed)", + rspamd_logger.infox("skip %s AV check as it is too large: %s (%s is allowed)", rule.type, task:get_size(), max_size) return false end @@ -284,7 +284,7 @@ local function need_av_check(task, rule) end end - rspamd_loger.infox("skip %s AV check as there are no attachments in a message", + rspamd_logger.infox("skip %s AV check as there are no attachments in a message", rule.type) return false |