Browse Source

Remove dead code

Dead since 919fa12, ie. v0.0.4
Alois Mahdal 6 years ago
parent
commit
1866dd6729
1 changed files with 0 additions and 6 deletions
  1. 0
    6
      src/common.lua

+ 0
- 6
src/common.lua View File

35
     --
35
     --
36
     local action = os.getenv("IMAPDOMO_ACTION")
36
     local action = os.getenv("IMAPDOMO_ACTION")
37
     local file = os.getenv("IMAPFILTER_HOME") .. "/handlers/" .. action .. ".lua"
37
     local file = os.getenv("IMAPFILTER_HOME") .. "/handlers/" .. action .. ".lua"
38
-    local valid = {
39
-        newmail = true,
40
-        rewind = true,
41
-        cleanup = true,
42
-        migrate = true
43
-    }
44
     if file_exists(file) then
38
     if file_exists(file) then
45
         do_if_exists("init.lua")
39
         do_if_exists("init.lua")
46
         dofile(file)
40
         dofile(file)