only diffewrence is the last line see if midifying helps out anyone EDIT 4.5.26 is working OK
mcs3ss2 Active Member Sep 8, 2020 286 33 28 AU May 26, 2022 #21 only diffewrence is the last line see if midifying helps out anyone EDIT 4.5.26 is working OK Last edited: May 26, 2022
N Nedo Member Jun 22, 2020 59 3 8 40 May 26, 2022 #22 mcs3ss2 said: only diffewrence is the last line see if midifying helps out anyone EDIT 4.5.26 is working OK Click to expand... My editing: end freeswitch.consoleLog("notice", "[fax] command: " .. cmd .. "\n"); result = api:executeString(cmd); os.execute(cmd); <-I added this line according previuous posts, is right?
mcs3ss2 said: only diffewrence is the last line see if midifying helps out anyone EDIT 4.5.26 is working OK Click to expand... My editing: end freeswitch.consoleLog("notice", "[fax] command: " .. cmd .. "\n"); result = api:executeString(cmd); os.execute(cmd); <-I added this line according previuous posts, is right?
T topogigio Member Jun 17, 2019 68 0 6 58 May 26, 2022 #23 mcs3ss2 said: fusionpbx 4.5.26 Code: --fax to email freeswitch.consoleLog("notice", "[fax] command: " .. cmd .. "\n"); result = api:execute("system", cmd); fusionpbx 5.0.1 Code: --fax to email freeswitch.consoleLog("notice", "[fax] command: " .. cmd .. "\n"); result = api:executeString(cmd); Click to expand... so the problem is the last row in fusionpbx/app/scripts/resources/scripts/app/fax/resources/scripts/hangup_rx.luathat may be fixed as api:execute("system", cmd)?
mcs3ss2 said: fusionpbx 4.5.26 Code: --fax to email freeswitch.consoleLog("notice", "[fax] command: " .. cmd .. "\n"); result = api:execute("system", cmd); fusionpbx 5.0.1 Code: --fax to email freeswitch.consoleLog("notice", "[fax] command: " .. cmd .. "\n"); result = api:executeString(cmd); Click to expand... so the problem is the last row in fusionpbx/app/scripts/resources/scripts/app/fax/resources/scripts/hangup_rx.luathat may be fixed as api:execute("system", cmd)?
T topogigio Member Jun 17, 2019 68 0 6 58 May 26, 2022 #24 meantime my working workaround is changing Code: result = api:executeString(cmd); with Code: result = api:execute("system", cmd); at line 230 of /usr/share/freeswitch/scripts/app/fax/resources/scripts/hangup_rx.lua
meantime my working workaround is changing Code: result = api:executeString(cmd); with Code: result = api:execute("system", cmd); at line 230 of /usr/share/freeswitch/scripts/app/fax/resources/scripts/hangup_rx.lua