Added $ADB auto-alt-dial extra debug output option, fix for extended auto-alt-dial issue #1337
git-svn-id: svn://192.168.202.10@3552 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
+30
-7
@@ -25,7 +25,7 @@
|
||||
# It is good practice to keep this program running by placing the associated
|
||||
# KEEPALIVE script running every minute to ensure this program is always running
|
||||
#
|
||||
# Copyright (C) 2021 Matt Florell <vicidial@gmail.com> LICENSE: AGPLv2
|
||||
# Copyright (C) 2022 Matt Florell <vicidial@gmail.com> LICENSE: AGPLv2
|
||||
#
|
||||
# CHANGELOG:
|
||||
# 50125-1201 - Changed dial timeout to 120 seconds from 180 seconds
|
||||
@@ -146,9 +146,10 @@
|
||||
# 210827-1044 - Fix for Extended auto-alt-dialing issue #1323
|
||||
# 210901-1020 - Another fix for Extended auto-alt-dialing issue #1323
|
||||
# 211022-1637 - Added incall_tally_threshold_seconds campaign feature
|
||||
# 220118-0938 - Added $ADB auto-alt-dial extra debug output option, fix for extended auto-alt-dial issue #1337
|
||||
#
|
||||
|
||||
$build='211022-1637';
|
||||
$build='220118-0938';
|
||||
$script='AST_VDauto_dial';
|
||||
### begin parsing run-time options ###
|
||||
if (length($ARGV[0])>1)
|
||||
@@ -166,6 +167,7 @@ if (length($ARGV[0])>1)
|
||||
print " [-t] = test\n";
|
||||
print " [-debug] = verbose debug messages\n";
|
||||
print " [-debugX] = Extra verbose debug messages\n";
|
||||
print " [--alt-debug] = Extra verbose Alt-Dialing debug messages\n";
|
||||
print " [--delay=XXX] = delay of XXX seconds per loop, default 2.5 seconds\n";
|
||||
print "\n";
|
||||
exit;
|
||||
@@ -191,6 +193,10 @@ if (length($ARGV[0])>1)
|
||||
{
|
||||
$DBX=1; # Extra Debug flag, set to 0 for no debug messages, On an active system this will generate hundreds of lines of output per minute
|
||||
}
|
||||
if ($args =~ /--alt-debug/i)
|
||||
{
|
||||
$ADB=1; # Alt-dial Debug flag, set to 0 for no alt-dial debug messages.
|
||||
}
|
||||
if ($args =~ /-t/i)
|
||||
{
|
||||
$TEST=1;
|
||||
@@ -1851,6 +1857,7 @@ while($one_day_interval > 0)
|
||||
|
||||
if ( ($alt_dial =~ /ALT|ADDR3|X/) && ($DBIPautoaltdial[$user_CIPct] =~ /ALT|ADDR|X/) )
|
||||
{
|
||||
if ($ADB > 0) {$aad_string = "ALT-51: $lead_id|$alt_dial|$DBIPautoaltdial[$user_CIPct]|"; &aad_output;}
|
||||
if ( ($alt_dial =~ /ALT/) && ($DBIPautoaltdial[$user_CIPct] =~ /ALT/) )
|
||||
{
|
||||
$alt_phone =~ s/\D//gi;
|
||||
@@ -1863,7 +1870,8 @@ while($one_day_interval > 0)
|
||||
}
|
||||
if ( ($alt_dial =~ /X/) && ($DBIPautoaltdial[$user_CIPct] =~ /X/) )
|
||||
{
|
||||
if ($alt_dial =~ /LAST/)
|
||||
if ($ADB > 0) {$aad_string = "ALT-52: $lead_id|$alt_dial|$DBIPautoaltdial[$user_CIPct]|"; &aad_output;}
|
||||
if ($alt_dial =~ /LAST|99999/)
|
||||
{
|
||||
$stmtA = "SELECT phone_code,phone_number FROM vicidial_list_alt_phones where lead_id='$lead_id' order by alt_phone_count desc limit 1;";
|
||||
}
|
||||
@@ -1885,6 +1893,7 @@ while($one_day_interval > 0)
|
||||
}
|
||||
$sthA->finish();
|
||||
}
|
||||
if ($ADB > 0) {$aad_string = "ALT-53: $lead_id|$alt_dial|$DBIPautoaltdial[$user_CIPct]|$phone_number|"; &aad_output;}
|
||||
|
||||
$stmtA = "UPDATE vicidial_list set called_since_last_reset='$CSLR',called_count='$called_count',user='VDAD',last_local_call_time='$LLCT_DATE' where lead_id='$lead_id'";
|
||||
}
|
||||
@@ -3057,6 +3066,7 @@ while($one_day_interval > 0)
|
||||
|
||||
##### BEGIN AUTO ALT PHONE DIAL SECTION #####
|
||||
$event_string = "|$stmtA|$VD_auto_alt_dial|$VD_auto_alt_dial_statuses|$CLnew_status|$CLlead_id|$CLalt_dial"; &event_logger;
|
||||
if ($ADB > 0) {$aad_string = "ALT-01: $CLlead_id|$VD_auto_alt_dial|$CLalt_dial|$VD_auto_alt_dial_statuses|"; &aad_output;}
|
||||
if ( ($VD_auto_alt_dial_statuses =~ / $CLnew_status /) && ($CLlead_id > 0) )
|
||||
{
|
||||
$alt_skip_reason=''; $addr3_skip_reason='';
|
||||
@@ -3084,6 +3094,7 @@ while($one_day_interval > 0)
|
||||
}
|
||||
$sthA->finish();
|
||||
$event_string = "|$stmtA|$VD_alt_phone|"; &event_logger;
|
||||
if ($ADB > 0) {$aad_string = "ALT-02: $CLlead_id|$CLalt_dial|$VD_alt_phone|"; &aad_output;}
|
||||
if (length($VD_alt_phone)>5)
|
||||
{
|
||||
if ( ($VD_use_internal_dnc =~ /Y/) || ($VD_use_internal_dnc =~ /AREACODE/) )
|
||||
@@ -3160,10 +3171,12 @@ while($one_day_interval > 0)
|
||||
{$alt_dial_skip=1; $alt_skip_reason='ALT phone invalid';}
|
||||
if ($alt_dial_skip > 0)
|
||||
{
|
||||
if ($ADB > 0) {$aad_string = "ALT-03: $CLlead_id|$CLalt_dial|ALT-skip|$alt_skip_reason|"; &aad_output;}
|
||||
$CLalt_dial='ALT';
|
||||
$aad_string = "$CLlead_id|$VD_alt_phone|$CLcampaign_id|ALT|0|hopper skip|$alt_skip_reason|"; &aad_output;
|
||||
}
|
||||
}
|
||||
if ($ADB > 0) {$aad_string = "ALT-04: $CLlead_id|$VD_auto_alt_dial|$CLalt_dial|"; &aad_output;}
|
||||
if ( ( ($VD_auto_alt_dial =~ /ADDR3_ONLY/) && ($CLalt_dial =~ /NONE|MAIN/) ) || ( ($VD_auto_alt_dial =~ /ALT_AND_ADDR3/) && ($CLalt_dial =~ /ALT/) ) )
|
||||
{
|
||||
$addr3_dial_skip=0;
|
||||
@@ -3185,6 +3198,7 @@ while($one_day_interval > 0)
|
||||
}
|
||||
$sthA->finish();
|
||||
$event_string = "|$stmtA|$VD_address3|"; &event_logger;
|
||||
if ($ADB > 0) {$aad_string = "ALT-05: $CLlead_id|$CLalt_dial|$VD_address3|"; &aad_output;}
|
||||
if (length($VD_address3)>5)
|
||||
{
|
||||
if ( ($VD_use_internal_dnc =~ /Y/) || ($VD_use_internal_dnc =~ /AREACODE/) )
|
||||
@@ -3261,10 +3275,12 @@ while($one_day_interval > 0)
|
||||
{$addr3_dial_skip=1; $addr3_skip_reason='ADDR3 phone invalid';}
|
||||
if ($addr3_dial_skip > 0)
|
||||
{
|
||||
if ($ADB > 0) {$aad_string = "ALT-06: $CLlead_id|$CLalt_dial|ADDR3-skip|$addr3_skip_reason|"; &aad_output;}
|
||||
$CLalt_dial='ADDR3';
|
||||
if ($AGILOG) {$aad_string = "$CLlead_id|$VD_address3|$CLcampaign_id|ADDR3|0|hopper skip|$addr3_skip_reason|"; &aad_output;}
|
||||
if ($SYSLOG) {$aad_string = "$CLlead_id|$VD_address3|$CLcampaign_id|ADDR3|0|hopper skip|$addr3_skip_reason|"; &aad_output;}
|
||||
}
|
||||
}
|
||||
if ($ADB > 0) {$aad_string = "ALT-07: $CLlead_id|$VD_auto_alt_dial|$CLalt_dial|"; &aad_output;}
|
||||
if ( ( ($VD_auto_alt_dial =~ /EXTENDED_ONLY/) && ($CLalt_dial =~ /NONE|MAIN/) ) || ( ($VD_auto_alt_dial =~ /ALT_AND_EXTENDED/) && ($CLalt_dial =~ /ALT/) ) || ( ($VD_auto_alt_dial =~ /ADDR3_AND_EXTENDED|ALT_AND_ADDR3_AND_EXTENDED/) && ($CLalt_dial =~ /ADDR3/) ) || ( ($VD_auto_alt_dial =~ /EXTENDED/) && ($CLalt_dial =~ /^X/) && ($CLalt_dial !~ /XLAST/) ) )
|
||||
{
|
||||
if ($CLalt_dial =~ /ADDR3/) {$Xlast=0;}
|
||||
@@ -3273,6 +3289,7 @@ while($one_day_interval > 0)
|
||||
$Xlast = $CLalt_dial;
|
||||
if ($CLalt_dial =~ /LAST/) {$Xlast=66000;}
|
||||
}
|
||||
if ($ADB > 0) {$aad_string = "ALT-08: $CLlead_id|$VD_auto_alt_dial|$CLalt_dial|$Xlast|"; &aad_output;}
|
||||
$Xlast =~ s/\D//gi;
|
||||
if (length($Xlast)<1)
|
||||
{$Xlast=0;}
|
||||
@@ -3304,6 +3321,7 @@ while($one_day_interval > 0)
|
||||
$sthA->finish();
|
||||
$event_string = "|$stmtA|$alt_dial_phones_count"; &event_logger;
|
||||
|
||||
if ($ADB > 0) {$aad_string = "ALT-09: $CLlead_id|$CLalt_dial|$Xlast|$alt_dial_phones_count|"; &aad_output;}
|
||||
while ( ($alt_dial_phones_count > 0) && ($alt_dial_phones_count > $Xlast) && ($Xlast != 'LAST') )
|
||||
{
|
||||
$Xlast++;
|
||||
@@ -3320,9 +3338,10 @@ while($one_day_interval > 0)
|
||||
$VD_phone_code = $aryA[3];
|
||||
}
|
||||
else
|
||||
{$Xlast=9999999999;}
|
||||
{$Xlast=99999;}
|
||||
$event_string = "|$stmtA|$VD_altdial_phone|$Xlast|"; &event_logger;
|
||||
$sthA->finish();
|
||||
if ($ADB > 0) {$aad_string = "ALT-10: $CLlead_id|$CLalt_dial|$Xlast|$VD_altdial_phone|"; &aad_output;}
|
||||
|
||||
$DNCC=0;
|
||||
$DNCL=0;
|
||||
@@ -3396,6 +3415,7 @@ while($one_day_interval > 0)
|
||||
$event_string = "-- VDH record inserted: |$affected_rows| |$stmtA|X$Xlast|$VD_altdial_id|"; &event_logger;
|
||||
$aad_string = "$CLlead_id|$VD_altdial_phone|$CLcampaign_id|X$Xlast|15|hopper insert|"; &aad_output;
|
||||
$DNC_hopper_trigger=0;
|
||||
if ($ADB > 0) {$aad_string = "ALT-11: $CLlead_id|$CLalt_dial|X$Xlast|$VD_altdial_phone|"; &aad_output;}
|
||||
}
|
||||
else
|
||||
{$DNC_hopper_trigger=1;}
|
||||
@@ -3412,17 +3432,20 @@ while($one_day_interval > 0)
|
||||
$affected_rows = $dbhA->do($stmtA);
|
||||
$event_string = "-- VDH record DNC inserted: |$affected_rows| |$stmtA|X$Xlast|$VD_altdial_id|"; &event_logger;
|
||||
$aad_string = "$CLlead_id|$VD_altdial_phone|$CLcampaign_id|X$Xlast|15|hopper DNC insert|"; &aad_output;
|
||||
$Xlast=9999999999;
|
||||
if ($ADB > 0) {$aad_string = "ALT-12: $CLlead_id|$CLalt_dial|X$Xlast|$VD_altdial_phone|"; &aad_output;}
|
||||
$Xlast=99999;
|
||||
}
|
||||
else
|
||||
{
|
||||
$event_string = "-- VDH record DNC not-inserted: |$affected_rows| |$stmtA|X$Xlast|$VD_altdial_id|"; &event_logger;
|
||||
$aad_string = "$CLlead_id|$VD_altdial_phone|$CLcampaign_id|X$Xlast|15|hopper DNC skip|"; &aad_output;
|
||||
if ($ADB > 0) {$aad_string = "ALT-13: $CLlead_id|$CLalt_dial|X$Xlast|$VD_altdial_phone|"; &aad_output;}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if ($ADB > 0) {$aad_string = "ALT-14: $CLlead_id|$CLalt_dial|END|"; &aad_output;}
|
||||
}
|
||||
##### END AUTO ALT PHONE DIAL SECTION #####
|
||||
}
|
||||
@@ -5691,7 +5714,7 @@ sub jam_event_logger
|
||||
|
||||
sub aad_output
|
||||
{
|
||||
if ($SYSLOG > 0)
|
||||
if ( ($SYSLOG > 0) || ($ADB > 0) )
|
||||
{
|
||||
### open the log file for writing ###
|
||||
open(Aout, ">>$AADLOGfile") || die "Can't open $AADLOGfile: $!\n";
|
||||
|
||||
+23
-4
@@ -93,6 +93,7 @@
|
||||
# 210827-0936 - Added PJSIP compatibility
|
||||
# 210907-0841 - Added KHOMP code (install JSON::PP Perl module and remove '#UC#' in the code to enable)
|
||||
# 220103-1520 - Added timeout fix for manual dial calls, set the CAMPDTO dialplan variable
|
||||
# 220118-0937 - Added $ADB auto-alt-dial extra debug output option, fix for extended auto-alt-dial issue #1337
|
||||
#
|
||||
|
||||
# defaults for PreFork
|
||||
@@ -103,6 +104,9 @@ $VARfastagi_log_max_spare_servers = '8';
|
||||
$VARfastagi_log_max_requests = '1000';
|
||||
$VARfastagi_log_checkfordead = '30';
|
||||
$VARfastagi_log_checkforwait = '60';
|
||||
$DB=0;
|
||||
$DBX=0;
|
||||
$ADB=0;
|
||||
|
||||
# default path to astguiclient configuration file:
|
||||
$PATHconf = '/etc/astguiclient.conf';
|
||||
@@ -218,6 +222,7 @@ else
|
||||
|
||||
sub process_request
|
||||
{
|
||||
$ADB=0;
|
||||
use Asterisk::AGI;
|
||||
$AGI = new Asterisk::AGI;
|
||||
|
||||
@@ -2085,10 +2090,12 @@ sub process_request
|
||||
##### BEGIN AUTO ALT PHONE DIAL SECTION #####
|
||||
$sthA->finish();
|
||||
# if ($AGILOG) {$agi_string = "AUTO-ALT TEST: |$VD_status|$VDL_status|$VD_auto_alt_dial_statuses|$VD_auto_alt_dial|"; &agi_output;}
|
||||
if ($ADB > 0) {$aad_string = "ALT-21: $VD_lead_id|$VD_status|$VDL_status|$VD_auto_alt_dial_statuses|$VD_auto_alt_dial|"; &aad_output;}
|
||||
if ($VD_auto_alt_dial_statuses =~ / $VD_status | $VDL_status /)
|
||||
{
|
||||
$alt_skip_reason=''; $addr3_skip_reason='';
|
||||
if ($AGILOG) {$agi_string = "AUTO-ALT MATCH: |$VD_status|$VDL_status|$VD_auto_alt_dial_statuses|$VD_auto_alt_dial|$VD_alt_dial|$VD_alt_dial_log|"; &agi_output;}
|
||||
if ($ADB > 0) {$aad_string = "ALT-22: $VD_lead_id|Alt-Dial Match|"; &aad_output;}
|
||||
if ( ($VD_auto_alt_dial =~ /(ALT_ONLY|ALT_AND_ADDR3|ALT_AND_EXTENDED)/) && ($VD_alt_dial =~ /NONE|MAIN/) )
|
||||
{
|
||||
$alt_dial_skip=0;
|
||||
@@ -2112,6 +2119,7 @@ sub process_request
|
||||
$epc_countCAMPDATA++;
|
||||
}
|
||||
$sthA->finish();
|
||||
if ($ADB > 0) {$aad_string = "ALT-23: $VD_lead_id|ALT-PHONE: $VD_alt_phone|"; &aad_output;}
|
||||
if (length($VD_alt_phone)>5)
|
||||
{
|
||||
if ( ($VD_use_internal_dnc =~ /Y/) || ($VD_use_internal_dnc =~ /AREACODE/) )
|
||||
@@ -2188,10 +2196,12 @@ sub process_request
|
||||
{$alt_dial_skip=1; $alt_skip_reason='ALT phone invalid';}
|
||||
if ($alt_dial_skip > 0)
|
||||
{
|
||||
if ($ADB > 0) {$aad_string = "ALT-24: $VD_lead_id|$VD_alt_dial|ALT-SKIP: $alt_skip_reason|"; &aad_output;}
|
||||
$VD_alt_dial='ALT';
|
||||
if ($AGILOG) {$aad_string = "$VD_lead_id|$VD_alt_phone|$VD_campaign_id|ALT|0|hopper skip|$alt_skip_reason|"; &aad_output;}
|
||||
}
|
||||
}
|
||||
if ($ADB > 0) {$aad_string = "ALT-25: $VD_lead_id|$VD_alt_dial|"; &aad_output;}
|
||||
if ( ( ($VD_auto_alt_dial =~ /(ADDR3_ONLY)/) && ($VD_alt_dial =~ /NONE|MAIN/) ) || ( ($VD_auto_alt_dial =~ /(ALT_AND_ADDR3)/) && ($VD_alt_dial =~ /ALT/) ) )
|
||||
{
|
||||
$addr3_dial_skip=0;
|
||||
@@ -2215,6 +2225,7 @@ sub process_request
|
||||
$epc_countCAMPDATA++;
|
||||
}
|
||||
$sthA->finish();
|
||||
if ($ADB > 0) {$aad_string = "ALT-26: $VD_lead_id|$VD_alt_dial|ADDR3-PHONE: $VD_address3|"; &aad_output;}
|
||||
if (length($VD_address3)>5)
|
||||
{
|
||||
if ( ($VD_use_internal_dnc =~ /Y/) || ($VD_use_internal_dnc =~ /AREACODE/) )
|
||||
@@ -2291,10 +2302,12 @@ sub process_request
|
||||
{$addr3_dial_skip=1; $addr3_skip_reason='ADDR3 phone invalid';}
|
||||
if ($addr3_dial_skip > 0)
|
||||
{
|
||||
if ($ADB > 0) {$aad_string = "ALT-27: $VD_lead_id|$VD_alt_dial|ADDR3-SKIP: $addr3_skip_reason|"; &aad_output;}
|
||||
$VD_alt_dial='ADDR3';
|
||||
if ($AGILOG) {$aad_string = "$VD_lead_id|$VD_address3|$VD_campaign_id|ADDR3|0|hopper skip|$addr3_skip_reason|"; &aad_output;}
|
||||
}
|
||||
}
|
||||
if ($ADB > 0) {$aad_string = "ALT-28: $VD_lead_id|$VD_alt_dial|"; &aad_output;}
|
||||
if ( ( ($VD_auto_alt_dial =~ /(EXTENDED_ONLY)/) && ($VD_alt_dial =~ /NONE|MAIN/) ) || ( ($VD_auto_alt_dial =~ /(ALT_AND_EXTENDED)/) && ($VD_alt_dial =~ /ALT/) ) || ( ($VD_auto_alt_dial =~ /ADDR3_AND_EXTENDED|ALT_AND_ADDR3_AND_EXTENDED/) && ($VD_alt_dial =~ /ADDR3/) ) || ( ($VD_auto_alt_dial =~ /(EXTENDED)/) && ($VD_alt_dial =~ /X/) && ($VD_alt_dial !~ /XLAST/) ) )
|
||||
{
|
||||
if ($VD_alt_dial =~ /ADDR3/) {$Xlast=0;}
|
||||
@@ -2332,6 +2345,7 @@ sub process_request
|
||||
$alt_dial_phones_count = $aryA[0];
|
||||
}
|
||||
$sthA->finish();
|
||||
if ($ADB > 0) {$aad_string = "ALT-29: $VD_lead_id|$VD_alt_dial|$Xlast|$alt_dial_phones_count|"; &aad_output;}
|
||||
|
||||
while ( ($alt_dial_phones_count > 0) && ($alt_dial_phones_count > $Xlast) )
|
||||
{
|
||||
@@ -2350,8 +2364,9 @@ sub process_request
|
||||
$VD_altdial_phone_code = $aryA[3];
|
||||
}
|
||||
else
|
||||
{$Xlast=9999999999;}
|
||||
{$Xlast=99999;}
|
||||
$sthA->finish();
|
||||
if ($ADB > 0) {$aad_string = "ALT-30: $VD_lead_id|$VD_alt_dial|$Xlast|"; &aad_output;}
|
||||
|
||||
if ($VD_altdial_active =~ /Y/)
|
||||
{
|
||||
@@ -2424,7 +2439,8 @@ sub process_request
|
||||
$affected_rows = $dbhA->do($stmtA);
|
||||
if ($AGILOG) {$agi_string = "-- VDH record inserted: |$affected_rows| |$stmtA|X$Xlast|$VD_altdial_id|"; &agi_output;}
|
||||
if ($AGILOG) {$aad_string = "$VD_lead_id|$VD_altdial_phone|$VD_campaign_id|X$Xlast|15|hopper insert|"; &aad_output;}
|
||||
$Xlast=9999999999;
|
||||
if ($ADB > 0) {$aad_string = "ALT-31: $VD_lead_id|$VD_alt_dial|X$Xlast|"; &aad_output;}
|
||||
$Xlast=99999;
|
||||
$DNC_hopper_trigger=0;
|
||||
}
|
||||
else
|
||||
@@ -2436,19 +2452,22 @@ sub process_request
|
||||
{
|
||||
if ( ( ($VD_auto_alt_dial_statuses =~ / DNCC /) && ($DNCC > 0) ) || ( ($VD_auto_alt_dial_statuses =~ / DNCL /) && ($DNCL > 0) ) || ( ($auto_alt_dial_statuses[$i] =~ / TFHCCL /) && ($TFHCCL > 0) ) )
|
||||
{
|
||||
if ($ADB > 0) {$aad_string = "ALT-32: $VD_lead_id|$VD_alt_dial|$Xlast|$alt_dial_phones_count|"; &aad_output;}
|
||||
if ($alt_dial_phones_count eq '$Xlast')
|
||||
{$Xlast = 'LAST';}
|
||||
$stmtA = "INSERT INTO vicidial_hopper SET lead_id='$VD_lead_id',campaign_id='$VD_campaign_id',status='DNC',list_id='$VD_list_id',gmt_offset_now='$VD_gmt_offset_now',state='$VD_state',alt_dial='X$Xlast',user='',priority='15',source='A';";
|
||||
$affected_rows = $dbhA->do($stmtA);
|
||||
if ($AGILOG) {$agi_string = "-- VDH record DNC inserted: |$affected_rows| |$stmtA|X$Xlast|$VD_altdial_id|"; &agi_output;}
|
||||
$Xlast=9999999999;
|
||||
$Xlast=99999;
|
||||
if ($AGILOG) {$agi_string = "-- VDH alt dial inserting DNC|X$Xlast|$VD_altdial_phone|"; &agi_output;}
|
||||
if ($AGILOG) {$aad_string = "$VD_lead_id|$VD_altdial_phone|$VD_campaign_id|X$Xlast|15|hopper DNC insert|"; &aad_output;}
|
||||
if ($ADB > 0) {$aad_string = "ALT-33: $VD_lead_id|$VD_alt_dial|$Xlast|DNC|"; &aad_output;}
|
||||
}
|
||||
else
|
||||
{
|
||||
if ($AGILOG) {$agi_string = "-- VDH alt dial not-inserting DNC|X$Xlast|$VD_altdial_phone|"; &agi_output;}
|
||||
if ($AGILOG) {$aad_string = "$VD_lead_id|$VD_altdial_phone|$VD_campaign_id|X$Xlast|15|hopper DNC skip|"; &aad_output;}
|
||||
if ($ADB > 0) {$aad_string = "ALT-34: $VD_lead_id|$VD_alt_dial|$Xlast|DNC|"; &aad_output;}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -3018,7 +3037,7 @@ sub agi_output
|
||||
|
||||
sub aad_output
|
||||
{
|
||||
if ($AGILOG > 0)
|
||||
if ( ($AGILOG > 0) || ($ADB > 0) )
|
||||
{
|
||||
### open the log file for writing ###
|
||||
open(Aout, ">>$AADLOGfile") || die "Can't open $AADLOGfile: $!\n";
|
||||
|
||||
Reference in New Issue
Block a user