Add voicemail with multi-lingual voicemail to email templates. Voicemail.lua has been broken down to individual files and a few additional directories to make it easier to manage in the long run.

This commit is contained in:
Mark Crane
2013-01-19 00:16:01 +00:00
parent f3581a860e
commit 806dc7014c
32 changed files with 2501 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
--check if a file exists
function file_exists(name)
local f=io.open(name,"r")
if f~=nil then io.close(f) return true else return false end
end