diff --git a/UPGRADE b/UPGRADE index 3a89f8bb..ba92e6ec 100644 --- a/UPGRADE +++ b/UPGRADE @@ -53,6 +53,7 @@ NOTE: Upgrading from 1.1.12-3 to 2.0.1 is at the bottom even if you only have one server, and you must have lines with the 7 prefix for silent insertion into the meetme conference: exten => _010*010*010*015*78600XXX,... + exten => _010*010*010*015*78600XXX*.,... See LOAD_BALANCING.txt and extensions.conf.sample for more information 12. Inbound, Blended and Closer-type campaigns are no longer required to have @@ -63,6 +64,14 @@ NOTE: Upgrading from 1.1.12-3 to 2.0.1 is at the bottom 14. Added ability to copy the settings campaigns, users and in-groups to new records +15. REQUIRED CHANGE! Old inbound and Closer AGI scripts have all been consolidated + into a single script: agi-VDAD_inbound.agi + Please look at the script header or the SCRATCH_INSTALL doc for more + info on how to alter your extenions.conf to use the new script. + The old agi-VDAD_closer... scripts have all been depricated and moved + to the extras/old_agi/ directory. + + diff --git a/agi/agi-IVR_recording_verification.agi b/agi/agi-IVR_recording_verification.agi index 67d00396..320908cc 100644 --- a/agi/agi-IVR_recording_verification.agi +++ b/agi/agi-IVR_recording_verification.agi @@ -358,7 +358,6 @@ $affected_rows = $dbhA->do($stmtA); ### if set, say the current date ### if ($say_date =~ /Y/) { - sleep(1); if ($AGILOG) {$agi_string = "SAYING DATETIME $now_date_epoch"; &agi_output;} if (length($say_date_prompt)>0) {$AGI->stream_file("$say_date_prompt");} sleep(1); @@ -401,7 +400,6 @@ while($prompts_count >= $i) ##### Play the last prompt and say the IVR number ##### $AGI->stream_file("$last_prompt"); - sleep(1); $AGI->say_digits("$ivr_id"); &get_time_now; diff --git a/docs/BASE_INSTALL.txt b/docs/BASE_INSTALL.txt index 4f42e07f..2550e177 100644 --- a/docs/BASE_INSTALL.txt +++ b/docs/BASE_INSTALL.txt @@ -554,6 +554,12 @@ PERL5LIB="/usr/share/astguiclient/libs"; export PERL5LIB ### start up the MySQL server /usr/local/mysql/bin/mysqld_safe --user=mysql --skip-name-resolve --skip-host-cache & +### roll the Asterisk logs upon reboot +/usr/share/astguiclient/ADMIN_restart_roll_logs.pl + +### clear the server-related records from the database +/usr/share/astguiclient/AST_reset_mysql_vars.pl + ### start up the apache web server /usr/local/apache2/bin/apachectl start diff --git a/docs/SCRATCH_INSTALL.txt b/docs/SCRATCH_INSTALL.txt index fdd4f626..b3579a69 100644 --- a/docs/SCRATCH_INSTALL.txt +++ b/docs/SCRATCH_INSTALL.txt @@ -497,7 +497,7 @@ to be loaded to use that option. 2. Go to http://lame.sourceforge.net/ and download the lame package - to install this directly on the command line type: - cd /usr/local - -wget http://umn.dl.sourceforge.net/sourceforge/lame/lame-3.96.1.tar.gz + -wget http://easynews.dl.sourceforge.net/sourceforge/lame/lame-3.96.1.tar.gz -gunzip lame-3.96.1.tar.gz -tar xvf lame-3.96.1.tar -cd lame-3.96.1 @@ -2798,6 +2798,12 @@ PERL5LIB="/usr/share/astguiclient/libs"; export PERL5LIB ### start up the apache web server /usr/local/apache2/bin/apachectl start +### roll the Asterisk logs upon reboot +/usr/share/astguiclient/ADMIN_restart_roll_logs.pl + +### clear the server-related records from the database +/usr/share/astguiclient/AST_reset_mysql_vars.pl + ### load digium tormenta 4xT1 drivers into system modprobe zaptel modprobe wct1xxp diff --git a/agi/agi-VDAD_LB_closer.agi b/extras/old_agi/agi-VDAD_LB_closer.agi similarity index 100% rename from agi/agi-VDAD_LB_closer.agi rename to extras/old_agi/agi-VDAD_LB_closer.agi diff --git a/agi/agi-VDAD_LB_closer_inbound.agi b/extras/old_agi/agi-VDAD_LB_closer_inbound.agi similarity index 100% rename from agi/agi-VDAD_LB_closer_inbound.agi rename to extras/old_agi/agi-VDAD_LB_closer_inbound.agi diff --git a/agi/agi-VDAD_LB_closer_inboundCID.agi b/extras/old_agi/agi-VDAD_LB_closer_inboundCID.agi similarity index 100% rename from agi/agi-VDAD_LB_closer_inboundCID.agi rename to extras/old_agi/agi-VDAD_LB_closer_inboundCID.agi diff --git a/agi/agi-VDAD_LO_closer.agi b/extras/old_agi/agi-VDAD_LO_closer.agi similarity index 100% rename from agi/agi-VDAD_LO_closer.agi rename to extras/old_agi/agi-VDAD_LO_closer.agi diff --git a/agi/agi-VDAD_LO_closer_inbound.agi b/extras/old_agi/agi-VDAD_LO_closer_inbound.agi similarity index 100% rename from agi/agi-VDAD_LO_closer_inbound.agi rename to extras/old_agi/agi-VDAD_LO_closer_inbound.agi diff --git a/agi/agi-VDADcloser.agi b/extras/old_agi/agi-VDADcloser.agi similarity index 100% rename from agi/agi-VDADcloser.agi rename to extras/old_agi/agi-VDADcloser.agi diff --git a/agi/agi-VDADcloser_PHONE.agi b/extras/old_agi/agi-VDADcloser_PHONE.agi similarity index 100% rename from agi/agi-VDADcloser_PHONE.agi rename to extras/old_agi/agi-VDADcloser_PHONE.agi diff --git a/agi/agi-VDADcloser_inbound.agi b/extras/old_agi/agi-VDADcloser_inbound.agi similarity index 100% rename from agi/agi-VDADcloser_inbound.agi rename to extras/old_agi/agi-VDADcloser_inbound.agi diff --git a/agi/agi-VDADcloser_inboundANI.agi b/extras/old_agi/agi-VDADcloser_inboundANI.agi similarity index 100% rename from agi/agi-VDADcloser_inboundANI.agi rename to extras/old_agi/agi-VDADcloser_inboundANI.agi diff --git a/agi/agi-VDADcloser_inboundCID.agi b/extras/old_agi/agi-VDADcloser_inboundCID.agi similarity index 100% rename from agi/agi-VDADcloser_inboundCID.agi rename to extras/old_agi/agi-VDADcloser_inboundCID.agi diff --git a/agi/agi-VDADcloser_inboundCIDlookup.agi b/extras/old_agi/agi-VDADcloser_inboundCIDlookup.agi similarity index 100% rename from agi/agi-VDADcloser_inboundCIDlookup.agi rename to extras/old_agi/agi-VDADcloser_inboundCIDlookup.agi diff --git a/agi/agi-VDADcloser_inbound_5ID.agi b/extras/old_agi/agi-VDADcloser_inbound_5ID.agi similarity index 100% rename from agi/agi-VDADcloser_inbound_5ID.agi rename to extras/old_agi/agi-VDADcloser_inbound_5ID.agi diff --git a/agi/agi-VDADcloser_inbound_NOCID.agi b/extras/old_agi/agi-VDADcloser_inbound_NOCID.agi similarity index 100% rename from agi/agi-VDADcloser_inbound_NOCID.agi rename to extras/old_agi/agi-VDADcloser_inbound_NOCID.agi