Added method for logging SIP responses for congested calls and displaying them in agent screen for manual dial calls

Fixed issue with logging of manual dial congested calls
Added --email-post-audio option to the VDsales export perl script
Removed a "select *" in the inbound email parser perl script

git-svn-id: svn://192.168.202.10@1954 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2013-04-13 00:56:06 +00:00
parent a807133d73
commit c35a591983
9 changed files with 371 additions and 28 deletions
+9 -2
View File
@@ -1998,7 +1998,10 @@ dialstatus VARCHAR(16),
channel VARCHAR(100),
dial_time SMALLINT(3) UNSIGNED default '0',
answered_time SMALLINT(4) UNSIGNED default '0',
index (call_date)
sip_hangup_cause SMALLINT(4) UNSIGNED default '0',
sip_hangup_reason VARCHAR(50) default '',
index (call_date),
index (lead_id)
);
CREATE TABLE vicidial_list_update_log (
@@ -2709,7 +2712,11 @@ channel VARCHAR(100) default '',
context VARCHAR(100) default '',
timeout MEDIUMINT(7) UNSIGNED default '0',
outbound_cid VARCHAR(100) default '',
sip_hangup_cause SMALLINT(4) UNSIGNED default '0',
sip_hangup_reason VARCHAR(50) default '',
uniqueid VARCHAR(20) default '',
index (caller_code),
index (lead_id),
index (call_date)
);
@@ -3097,4 +3104,4 @@ UPDATE vicidial_configuration set value='1766' where name='qc_database_version';
UPDATE system_settings set vdc_agent_api_active='1';
UPDATE system_settings SET db_schema_version='1341',db_schema_update_date=NOW();
UPDATE system_settings SET db_schema_version='1342',db_schema_update_date=NOW();