mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-06 11:43:50 +00:00
Add. mail templates for fax server responses.
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
|
||||
--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
|
||||
local f = io.open(name, "r")
|
||||
if not f then return end
|
||||
f:close()
|
||||
return name
|
||||
end
|
||||
Reference in New Issue
Block a user