Merge branch 'master' of https://github.com/fusionpbx/fusionpbx
This commit is contained in:
@@ -55,12 +55,17 @@ We have a pretty thriving community if you know how to get to us:
|
|||||||
|
|
||||||
Contributing
|
Contributing
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
|
|
||||||
|
###Requirements
|
||||||
It's easy to contribute to FusionPBX the only thing we ask before accepting your pull request is that you sign a Contributor License Agreement.
|
It's easy to contribute to FusionPBX the only thing we ask before accepting your pull request is that you sign a Contributor License Agreement.
|
||||||
We ask that you sign the Contributor License Agreement for the following reasons:
|
We ask that you sign the Contributor License Agreement for the following reasons:
|
||||||
|
|
||||||
1. It protects FusionPBX by you gauranteeing that your contributions are yours to contribute and not the property of an employer or something found on the web.
|
1. It protects FusionPBX by you gauranteeing that your contributions are yours to contribute and not the property of an employer or something found on the web.
|
||||||
2. It protects you from using code that belongs to others that is subject unfriendly licensing.
|
2. It protects you from using code that belongs to others that is subject unfriendly licensing.
|
||||||
|
|
||||||
|
### How to Contribute
|
||||||
|
* [The Quick Way](https://github.com/Fusionpbx/opensource/blob/master/sign-cla.md) - Step by step instructions to contribute to FusionPBX with links to our CLA and how to submit pull requests.
|
||||||
|
* [The FusionPBX Contribution Site](https://github.com/Fusionpbx/opensource) - The full repo with more information for the curious.
|
||||||
|
|
||||||
How to Install FusionPBX COMING SOON
|
How to Install FusionPBX COMING SOON
|
||||||
----------------------------
|
----------------------------
|
||||||
|
|||||||
@@ -65,9 +65,11 @@
|
|||||||
if (not default_voice) then default_voice = 'callie'; end
|
if (not default_voice) then default_voice = 'callie'; end
|
||||||
|
|
||||||
--if the screen file is found then set confirm to true
|
--if the screen file is found then set confirm to true
|
||||||
call_screen_file = "/tmp/" .. domain_name .. "-" .. caller_id_number .. "." .. record_ext;
|
if (domain_name ~= nil) then
|
||||||
if (file_exists(call_screen_file)) then
|
call_screen_file = "/tmp/" .. domain_name .. "-" .. caller_id_number .. "." .. record_ext;
|
||||||
confirm = "true";
|
if (file_exists(call_screen_file)) then
|
||||||
|
confirm = "true";
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
--confirm the calls
|
--confirm the calls
|
||||||
@@ -104,4 +106,4 @@
|
|||||||
--send to the log
|
--send to the log
|
||||||
--freeswitch.consoleLog("NOTICE", "[confirm] automatically accepted\n");
|
--freeswitch.consoleLog("NOTICE", "[confirm] automatically accepted\n");
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user