Browse Source

Add missing slashes.

tags/1.0.0
Vsevolod Stakhov 8 years ago
parent
commit
f80eb1003e
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      rules/rspamd.lua

+ 4
- 4
rules/rspamd.lua View File

@@ -51,10 +51,10 @@ local function file_exists(filename)
end
end

if file_exists(local_conf .. 'rspamd.local.lua') then
dofile(local_conf .. 'rspamd.local.lua')
if file_exists(local_conf .. '/rspamd.local.lua') then
dofile(local_conf .. '/rspamd.local.lua')
end

if file_exists(local_rules .. 'rspamd.classifiers.lua') then
dofile(local_rules .. 'rspamd.classifiers.lua')
if file_exists(local_rules .. '/rspamd.classifiers.lua') then
dofile(local_rules .. '/rspamd.classifiers.lua')
end

Loading…
Cancel
Save