Set fax_enable_t38_request to false solves problem with 'Called dropped prematurely'

This commit is contained in:
Mark Crane
2015-06-08 17:54:49 +00:00
parent 6b8bb6a1d5
commit dc2a02dc59

View File

@@ -418,10 +418,10 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
$dialplan_detail_order = '050';
dialplan_detail_add($_SESSION['domain_uuid'], $dialplan_uuid, $dialplan_detail_tag, $dialplan_detail_order, $dialplan_detail_group, $dialplan_detail_type, $dialplan_detail_data);
//<action application="set" data="fax_enable_t38_request=true"/>
//<action application="set" data="fax_enable_t38_request=false"/>
$dialplan_detail_tag = 'action'; //condition, action, antiaction
$dialplan_detail_type = 'set';
$dialplan_detail_data = 'fax_enable_t38_request=true';
$dialplan_detail_data = 'fax_enable_t38_request=false';
$dialplan_detail_order = '060';
dialplan_detail_add($_SESSION['domain_uuid'], $dialplan_uuid, $dialplan_detail_tag, $dialplan_detail_order, $dialplan_detail_group, $dialplan_detail_type, $dialplan_detail_data);