forked from snct-dialer/snct-dialer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog
2072 lines (2013 loc) · 79.4 KB
/
changelog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2.26.29
[Jörg Frings-Fürst]
* Add missing copyright:
- Update: www/vicidial/admin.php.
2.25.28
[Jörg Frings-Fürst]
* www/vicidial/admin.php: Fix escaping for auto_answer_sipheader.
* Add sniplet into perl scripts to run only once a time (2018-0010):
- Update: bin/AST_CRON_audio_2_compress.pl,
bin/ADMIN_keepalive_ALL.pl,
bin/ADMIN_adjust_GMTnow_on_leads.pl,
bin/ADMIN_archive_log_tables.pl,
bin/ADMIN_area_code_populate.pl,
bin/ADMIN_audio_store_sync.pl,
bin/ADMIN_backup.pl,
bin/ADMIN_purge_log_tables.pl,
bin/ADMIN_qm_sync.pl,
bin/ADMIN_reset_failed_count.pl,
bin/ADMIN_restart_roll_logs.pl,
bin/ADMIN_update_archive_url.pl,
bin/AST_CRON_GSM_SALE_recordings.pl,
bin/AST_CRON_audio_1_move_VDonly.pl,
bin/AST_CRON_audio_1_move_mix.pl,
bin/AST_CRON_audio_2_encrypt.pl,
bin/AST_CRON_audio_3_ftp.pl,
bin/AST_CRON_audio_3_ftp_FTPSSL.pl,
bin/AST_CRON_audio_3_newftp.pl,
bin/AST_CRON_audio_4_ftp2.pl,
bin/AST_CRON_audio_4_ftp2_FTPSSL.pl,
bin/AST_CRON_purge_recordings.pl,
bin/AST_conf_update.pl,
bin/AST_manager_kill_hung_congested.pl,
bin/AST_vm_update.pl
* Add upstream Rev. 2998:
- Update: bin/VD_email_inbound.pl,
www/agc/conf_exten_check.php,
www/agc/vicidial.php,
www/vicidial/lead_report_export.php: Added code to not allow XFER emails
to go to user who transferred.
* Add upstream Rev. 2999:
- Update: UPGRADE,
extras/MySQL_AST_CREATE_tables.sql,
extras/upgrade_2.14.sql,
www/agc/dispo_send_email.php,
www/agc/vdc_db_query.php,
www/agc/vicidial.php,
www/vicidial/admin.php,
www/vicidial/help_documentation.txt: Added instructions for Dead
Trigger URL.
- New: extras/mysql_update/mysql-1534.sql.
* Add upstream Rev. 3000:
- Update: www/vicidial/admin.php: Fix for issue #1108.
* Add upstream Rev. 3001:
- Update: bin/AST_CRON_audio_3_ftp.pl,
bin/AST_CRON_audio_3_ftp_FTPSSL.pl,
bin/AST_CRON_audio_4_ftp2.pl,
docs/CALL_URL_FEATURES.txt: Added --localdatedir option.
* Add upstream Rev. 3002:
- Update: www/vicidial/admin.php,
www/vicidial/admin_amm_multi.php,
www/vicidial/admin_header.php,
www/vicidial/admin_soundboard.php,
www/vicidial/audio_store.php: Modified audio chooser window to appear
at height where mouse was clicked in JS functions.
* Add upstream Rev. 3003:
- Update: docs/EU_GDPR_COMPLIANCE.txt. Add hint to install missing package.
* bin/ADMIN_backup.pl: Split mysqldump and packing.
* Add upstream Rev. 3004:
- Update: bin/ADMIN_timeclock_auto_logout.pl: Fix for concurrency check
and debug output.
* Add upstream Rev. 3005:
- Update: bin/AST_expired_list_exporter.pl,
www/vicidial/admin.php,
www/vicidial/admin_amm_multi.php,
www/vicidial/admin_header.php,
www/vicidial/admin_soundboard.php,
www/vicidial/audio_store.php: Added options to use different date
ranges for exports and deletes; Modified calls to audio file chooser
function;
* Add upstream Rev. 3006:
- Update: bin/AST_CRON_audio_3_ftp.pl,
bin/AST_CRON_audio_3_ftp_FTPSSL.pl: Change some function calls.
* Add upstream Rev. 3007:
- Update: www/vicidial/AST_CLOSERstats.php,
www/vicidial/AST_CLOSERstats_v2.php,
www/vicidial/AST_inbound_forecasting.php,
www/vicidial/AST_rt_monitor_log_report.php,
www/vicidial/Erlang_report.php: Fix for rare allowed reports issue.
* Rewrite for php7:
- Update: www/agc/functions.php,
www/agc/conf_exten_check.php,
www/agc/vdc_db_query.php.
* Add upstream Rev. 3008:
- Update: www/vicidial/admin_header.php: Fix for audio chooser bug on call
menu screen.
* Add index modify_date to vicidial_list, new fields coord_one, coord_two
type POINT into vicidial_list:
- Update: extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1534.sql.
* Add upstream Rev. 3009:
- Update: bin/ADMIN_archive_log_tables.pl: Added --wipe-all-being-archived
AND --did-log-days options.
* Add upstream Rev. 3010:
- Update: www/agc/vicidial.php: Small fix for pause code issue.
* Add upstream Rev. 3011:
- New: www/vicidial/AST_CMstats.php
- Update: UPGRADE,
agi/agi-VDAD_ALL_inbound.agi,
docs/CELLPHONE_USA_TCPA_FCC_COMPLIANCE.txt,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1534.sql,
extras/upgrade_2.14.sql,
www/vicidial/admin.php,
www/vicidial/help_documentation.txt: Added CID callback number
validation and change features, Added link to Callmenu Survey Report,
Added fields for In-Group Callback CID features.
- Resync direcrory sounds.
* Add upstream Rev. 3012, 3013, 3014:
- Update: www/vicidial/admin.php,
www/vicidial/admin_modify_lead.php: Added change for admin change log
for Admin Modify Lead to better show lead changes;Added new diff
logging code.
* Add upstream Rev. 3015:
- Update: www/vicidial/AST_campaign_status_list_report.php: Fixed log query
issue.
* Add upstream Rev. 3016:
- Update: UPGRADE,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1534.sql,
extras/upgrade_2.14.sql,
www/agc/vicidial.php,
www/agc/vicidial.php.orig,
www/vicidial/admin.php,
www/vicidial/help_documentation.txt: Added agent_logout_link credentials
system setting.
* Add upstream Rev. 3017:
- Update: extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1534.sql,
extras/upgrade_2.14.sql,
www/agc/vdc_db_query.php,
www/agc/vicidial.php,
www/vicidial/admin.php,
www/vicidial/help_documentation.txt: Addedscheduled_callbacks_force_dial
campaign feature.
* Add selector Phone / Agent for calltransfer (2018-011):
- New: www/agc/images/vdc_XB_agent.png.
- Update: www/agc/vicidial.php.
* Add upstream Rev. 3018, 3019:
- Update: UPGRADE,
bin/ADMIN_keepalive_ALL.pl,
bin/AST_VDauto_dial.pl,
bin/AST_VDauto_dial_FILL.pl,
docs/ASTERISK_13.txt,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1534.sql,
extras/upgrade_2.14.sql,
www/agc/vdc_db_query.php,
www/vicidial/admin.php,
www/vicidial/help_documentation.txt: Added rolling of
vicidial_recent_ascb_calls records, Added code for
scheduled_callbacks_auto_reschedule campaign feature.
* Add upstream Rev. 3020:
- Update: UPGRADE,
bin/ADMIN_area_code_populate.pl,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1534.sql,
extras/upgrade_2.12.sql,
extras/upgrade_2.14.sql,
www/agc/vdc_db_query.php,
www/agc/vicidial.php,
www/vicidial/admin.php,
www/vicidial/help_documentation.txt: Added php_tz field to
vicidial_phone_codes table, Added code for
scheduled_callbacks_timezones_... features.
* Add upstream Rev. 3021:
- Upgrade: www/vicidial/AST_CMstats.php: Added totals.
* Add upstream Rev. 3022, 3024:
- Update: extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1534.sql,
extras/upgrade_2.14.sql,
www/agc/api.php,
www/agc/vdc_script_display.php: Added count for waiting emails to
calls_in_queue_count function, Patch for proper url encoding of
variables replaced when within href and src attributes.
* Add upstream Rev. 3023:
- Update: www/agc/vdc_db_query.php: Fix for calls_today count when using
dial-ingroup.
* Add upstream Rev. 3025:
- Update: www/vicidial/admin.php: Added copying of in-group user
grades/ranks when copying an in-group.
* Remove commas from mailboxname:
- Update: bin/ADMIN_keepalive_ALL.pl.
* Add upstream Rev. 3026:
- Update: UPGRADE,
agi/cm_sc_ccc_lookup_insert.agi,
bin/ADMIN_keepalive_ALL.pl,
docs/AGENT_API.txt,
docs/CROSS_CLUSTER_COMMUNICATION.txt,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1534.sql,
extras/upgrade_2.14.sql,
www/agc/api.php,
www/vicidial/admin.php: Added daily rolling of vicidial_ccc_log records.
* Add upstream Rev. 3027:
- Update: www/agc/dispo_send_email.php: Added channel_group variable.
* Add upstream Rev. 3028, 3029:
- Update: bin/AST_VDauto_dial_FILL.pl: Small fix for data validation.
* Add upstream Rev. 3030:
- Update: www/agc/vdc_db_query.php: Small fix for call notes display.
* Add upstream Rev. 3031:
- Update: extras/MySQL_AST_CREATE_tables.sql: Small fix.
* Add upstream Rev. 3032:
- Update: UPGRADE,
bin/ADMIN_keepalive_ALL.pl,
docs/NON-AGENT_API.txt,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1534.sql,
extras/upgrade_2.14.sql,
www/vicidial/admin.php,
www/vicidial/help_documentation.txt,
www/vicidial/non_agent_api.php,
www/vicidial/reset_campaign_lists.php: Added vicidial_lists.resets_today
resetting at TEOD, timed reset resets_today verification before reset.
* Add upstream Rev. 3033:
- Update: www/agc/vdc_db_query.php: Change to use the same new function for
manual dial DNC filtering.
* Add upstream Rev. 3034:
- Update: agi/VD_amd.agi,
bin/FastAGI_log.pl: Fix for logging issue, Fix for rare
non-NA-set-as-NA call logging issue.
* Add upstream Rev. 3035:
- Update: www/vicidial/admin.php: Added copying of user selected in-groups
in copying of an in-group.
* Add upstream Rev. 3036:
- Update: UPGRADE,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1534.sql,
extras/upgrade_2.14.sql,
www/agc/vicidial.php,
www/vicidial/admin.php,
www/vicidial/help_documentation.txt: Added three_way_volume_buttons
campaign feature.
* Add upstream Rev. 3037:
- Update: agi/VD_amd.agi,
www/vicidial/admin_amm_multi.php: Added called_count as AMM wildcard.
* Add upstream Rev. 3038:
- Update: UPGRADE,
bin/AST_VDhopper.pl,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1534.sql,
extras/upgrade_2.14.sql,
www/vicidial/admin.php,
www/vicidial/help_documentation.txt: Added callback_dnc campaign option.
* Add upstream Rev. 3039:
- Update: docs/CALLER_ID_NAME_CODES.txt: Add DV.
* Add upstream Rev. 3040:
- Update: www/agc/vicidial.php: Fix for rare webform URL issue.
* Add upstream Rev. 3041:
- Update: www/agc/vdc_db_query.php: Added translatable phrases, related to
issue #1114.
* Add upstream Rev. 3042:
- Update: UPGRADE,
agi/agi-VDAD_ALL_inbound.agi,
agi/agi-VDAD_ALL_outbound.agi,
bin/AST_expired_list_exporter.pl,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1534.sql,
extras/upgrade_2.14.sql,
www/vicidial/admin.php,
www/vicidial/help_documentation.txt: Added _wait_time options for next
agent call options in campaigns and in-groups.
* Add upstream Rev. 3043:
- Update: www/agc/agc_agent_manager_chat_interface.php: Fix for missing
translationm issue #1125.
* Add upstream Rev. 3044:
- Update: www/vicidial/AST_admin_template_maker.php: Fix for deleted
template function in alternate language, issue #1127.
* Add upstream Rev. 3045:
- Update: vicidial/admin_listloader_fourth_gen.php: Fixed
translation-related issue #1114.
* Add upstream Rev. 3046:
- Update: bin/ADMIN_update_server_ip.pl: Added update of report_server,
active_twin_server_ip and active_voicemail_server, issue #1109.
* Add upstream Rev. 3047:
- Update: bin/ADMIN_keepalive_ALL.pl,
docs/Sangoma_Netborder_CPD_Walkthrough.txt,
www/vicidial/help_documentation.txt: Added more allowed codecs to conf
file generation.
* Add upstream Rev. 3048:
- Update: bin/AST_update_AMI2.pl,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1534.sql,
extras/upgrade_2.14.sql,
www/agc/phone_only.php,
www/agc/vicidial.php,
www/vicidial/admin.php,
www/vicidial/help_documentation.txt: Fix for RINGAGENT calls, Added
external_web_socket_url option.
* Add upstream Rev. 3049:
- Update: bin/AST_flush_DBqueue.pl: Added optimize of cid_channels_recent_
tables.
* Add upstream Rev. 3050:
- Update: www/agc/functions.php: Fix for defaut field in AREA type.
* Add upstream Rev. 3051:
- Update: UPGRADE,
www/agc/vdc_db_query.php,
www/agc/vicidial.php,
www/vicidial/admin.php,
www/vicidial/help_documentation.txt: Added SYSTEM manual_dial_filter
option.
* Fix Drop Percent Today:
- Update: AST_timeonVDADall.php.
* Add upstream Rev. 3052:
- Update: bin/ADMIN_keepalive_ALL.pl: Added vicidial_list stuck
QUEUE reset at TEoD.
* New www/.htaccess: Disable webaccess to log files.
* Add upstream Rev. 3053:
- Update: bin/AST_expired_list_exporter.pl.
* Add upstream Rev. 3054:
- Update: www/vicidial/admin.php: Fix for DID server IP de-assignment.
* Add upstream Rev. 3055:
- Update: www/vicidial/realtime_report.php: Added external_web_socket_url
option.
* Add upstream Rev. 3056:
- Update: www/vicidial/admin_phones_bulk_insert.php,
www/vicidial/call_report_export.php,
www/vicidial/help_documentation.txt: Added template option.
* Add upstream Rev. 3057:
- Update: UPGRADE,
docs/NON-AGENT_API.txt,
www/vicidial/non_agent_api.php: Added lead_callback_info function.
* bin/ADMIN_backup.pl: Use tar | xy for packing; Pack database tables in own
files; Remove passwords from logging, add tests for file exists.
* New bin/ADMIN_backup_ng.pl.
* Allow table names with whitespaces:
- Update bin/ADMIN_backup.pl,
bin/ADMIN_backup_ng.pl.
* Add upstream Rev. 3058:
- Update: bin/AST_update_AMI2.pl: More fixes for RINGAGENT Calls.
* Add upstream Rev. 3059:
- Update UPGRADE,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1534.sql,
extras/upgrade_2.14.sql,
www/agc/vdc_db_query.php,
www/agc/vicidial.php,
www/vicidial/admin.php,
www/vicidial/help_documentation.txt: Added manual_dial_validation
feature.
* New experimental/CheckRestoreStatus.php.
* Add upstream Rev. 3060:
- Update www/vicidial/call_report_export.php: Added ---ALL--- options for
Campaigns and In-Groups.
* Add upstream Rev. 3061:
- Update agi/agi-VDAD_ALL_inbound.agi,
bin/AST_manager_listen_AMI2.pl,
bin/AST_update_AMI2.pl,
www/vicidial/admin.php: Added RA_USER_PHONE On-Hook CID to solve last
RINGAGENT issues.
* Add upstream Rev. 3062:
- Update agi/agi-dtmf.agi: Added alphabet letters translation to phone
DTMF digits feature.
* Add upstream Rev. 3063:
- Update www/agc/dispo_send_email.php: Added --A--RUSfullname--B-- special
variable flag.
* Correct typo:
- bin/AST_CRON_WallBoard3_gen.php,
extras/MySQL_AST_CREATE_tables.sql.
* New Phone Redirekt feature, Phones Switch to MYSQLI_BOTH for using
fieldnames:
- Update extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1534.sql,
extras/upgrade_2.14.sql,
www/agc/vicidial.php,
www/vicidial/admin.php.
* New Change log rolling to logrotate:
- Update agi/VDL_CID_lookup.agi,
agi/VD_amd.agi,
agi/VD_auto_post_VERIFY.agi,
agi/agent_monitor.agi,
agi/agi-AGENT_dial_in.agi,
agi/agi-AGENT_route.agi,
agi/agi-CALLCARD_dial_in.agi,
agi/agi-CANADA_PRI_CIDname.agi,
agi/agi-DID_route.agi,
agi/agi-IVR_recording_verification.agi,
agi/agi-LCR-Route.agi,
agi/agi-NVA_recording.agi,
agi/agi-VDAD_ALL_inbound.agi,
agi/agi-VDAD_ALL_outbound.agi,
agi/agi-VDAD_ALL_outboundBETA.agi,
agi/agi-VDAD_ALL_outboundBETA2.agi,
agi/agi-VDAD_RINGALL.agi,
agi/agi-VDAD_inbound_calltime_check.agi,
agi/agi-VDAD_pin_IVR.agi,
agi/agi-VDADautoREMINDER.agi,
agi/agi-VDADautoREMINDERxfer.agi,
agi/agi-VDADfixCXFER.agi,
agi/agi-VDADinbound_NI_DNC_CIDlookup.agi,
agi/agi-VDADlisten_DTMF.agi,
agi/agi-VDADselective_CID_hangup.agi,
agi/agi-ingroup_survey.agi,
agi/agi-phone_monitor.agi,
agi/agi-record_prompts.agi,
agi/agi-set_variables.agi,
agi/call_inbound.agi,
agi/cm.agi,
agi/cm_areacode.agi,
agi/cm_cid_change.agi,
agi/cm_dnc.agi,
agi/cm_dnc_new.agi,
agi/cm_fpg.agi,
agi/cm_lookup.agi,
agi/cm_phonesearch.agi,
agi/cm_postal.agi,
agi/cm_sc_areacode.agi,
agi/cm_sc_ccc_lookup_insert.agi,
agi/cm_sc_send_url.agi,
agi/cm_speak_var.agi,
agi/cm_status_dial.agi,
agi/getAGENTchannel.agi,
agi/park_CID.agi,
agi/park_call_IVR_cf_collect.agi,
agi/park_call_IVR_example.agi,
agi/phone_alt_CID.agi,
agi/timer_rebeep.agi,
bin/ADMIN_audio_store_sync.pl,
bin/ADMIN_keepalive_ALL.pl,
bin/ADMIN_timeclock_auto_logout.pl,
bin/ADMIN_www_languages.pl,
bin/AST_VDadapt.pl,
bin/AST_VDauto_dial.pl,
bin/AST_VDauto_dial_FILL.pl,
bin/AST_VDhopper.pl,
bin/AST_VDremote_agents.pl,
bin/AST_agent_logout.pl,
bin/AST_conf_update_3way.pl,
bin/AST_manager_kill_hung_congested.pl,
bin/AST_manager_listen.pl,
bin/AST_manager_listenBUFFER.pl,
bin/AST_manager_listen_AMI2.pl,
bin/AST_update.pl,
bin/AST_update_AMI2.pl,
bin/FastAGI_log.pl,
bin/VD_email_inbound.pl,
bin/VICIDIAL_DEDUPE_leads.pl,
bin/VICIDIAL_IN_new_leads_file.pl,
bin/VICIDIAL_IN_preprocess_leads_file.pl,
bin/VICIDIAL_UPDATE_leads_status_file.pl,
bin/VICIDIAL_fix_list_statuses.pl,
bin/VICIDIAL_fix_status_mismatch.pl,
bin/VICIDIAL_last_local_call_time_UPDATE.pl,
bin/VICIDIAL_rebuild_list_statuses.pl,
bin/Vtiger_IN_new_accounts_file.pl,
bin/Vtiger_IN_notes_activities_file.pl,
bin/Vtiger_KILL_slow_queries.pl,
bin/Vtiger_OUT_sync2VICIDIAL_file.pl,
experimental/AST_update.pl,
experimental/FastAGI_log_multi_server.pl.
* Fix asterisk 13 issue:
- Change bin/AST_update.pl.
* New tools/VD-block.php:
- Block all inbounds from a list.
* New Display Pause Name on agent screen:
- Update www/agc/conf_exten_check.php,
www/agc/functions.php,
www/agc/vicidial.php.
* Remove old stuff.
* Add upstream Rev. 3064:
- Update: bin/AST_flush_DBqueue.pl: Fix for cid_recent_ table optimization
issue.
* Add upstream Rev. 3065:
- Update: UPGRADE,
agi/VD_amd.agi,
agi/agi-DID_route.agi,
agi/agi-VDAD_ALL_inbound.agi,
bin/AST_VDadapt.pl,
bin/AST_VDhopper.pl,
bin/VD_email_inbound.pl,
www/agc/vdc_db_query.php,
www/vicidial/AST_VICIDIAL_ingrouplist.php,
www/vicidial/admin.php,
www/vicidial/fcstats.php,
www/vicidial/fcstats_detail.php,
www/vicidial/process_report.php: Fix for cid_recent_ table optimization
issue; Fix for user-group, in-group and campaign settings matching
issues; ix for user-group, in-group and campaign allowed/permissions
matching issues; Added additional $VLforce_index flags, for high
volume dialing systems;
- New: translations/LANGUAGE_ALL_el_Greek_20190207-005409.txt.
* Add upstream Rev. 3066:
- Update: UPGRADE,
bin/ADMIN_keepalive_ALL.pl,
bin/AST_flush_DBqueue.pl,
docs/AGENT_API.txt,
docs/CROSS_CLUSTER_COMMUNICATION.txt,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1534.sql,
extras/upgrade_2.14.sql,
www/agc/agc_agent_manager_chat_interface.php,
www/agc/api.php,
www/agc/chat_db_query.php,
www/agc/conf_exten_check.php,
www/agc/deactivate_lead.php,
www/agc/dispo_add_FPG.php,
www/agc/dispo_change_status.php,
www/agc/dispo_move_list.php,
www/agc/dispo_send_email.php,
www/agc/functions.php,
www/agc/manager_send.php,
www/agc/phone_only.php,
www/agc/vdc_chat_display.php,
www/agc/vdc_db_query.php,
www/agc/vdc_email_display.php,
www/agc/vdc_form_display.php,
www/agc/vdc_script_display.php,
www/agc/vdc_script_notes.php,
www/agc/vdc_soundboard_display.php,
www/agc/vicidial.php,
www/agc/voicemail_check.php,
www/vicidial/admin.php: Added flushing of vicidial_sessions_recent
table; Added force_fronter_audio_stop function; Added recent session
per-call logging; Added vicidial_sessions_recent inserts when lead
is set to INCALL status.
* Add upstream Rev. 3067:
- Update: UPGRADE,
agi/agi-VDAD_ALL_inbound.agi,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1534.sql,
extras/upgrade_2.14.sql,
www/vicidial/admin.php,
www/vicidial/help_documentation.txt: Added definable play-place-in-line
static prompts.
* Add upstream Rev. 3068:
- Update: UPGRADE,
docs/LICENSE.txt,
www/vicidial/AST_timeonVDADall.php,
www/vicidial/admin.php,
www/vicidial/admin_header.php,
www/vicidial/vicidial_stylesheet.php,
www/vicidial/vicidial_whiteboard_functions.php,
www/vicidial/whiteboard_reports.php: Added mobile device display
variable; Added disclaimers for pure-knob code; Added special
streamlined header option for mobile devices; New mobile display
elements added; Added code to exclude active calls from being
counted with some stats.
- New: www/vicidial/AST_rt_whiteboard_rpt_mobile.php,
www/vicidial/AST_timeonVDADallSUMMARY_mobile.php,
www/vicidial/admin_mobile.php,
www/vicidial/campaign_summary_mobile_report.php,
www/vicidial/pureknob.js,
www/vicidial/realtime_report_mobile.php.
* Add upstream Rev. 3069:
- Update: www/vicidial/realtime_report.php: Added variable-length header
icon tables.
* Add upstream Rev. 3070:
- Update: www/vicidial/AST_timeonVDADallSUMMARY_mobile.php: Correct typo.
* Add upstream Rev. 3071:
- Update: docs/LICENSE.txt,
www/vicidial/admin.php,
www/vicidial/vicidial_whiteboard_functions.php: Change auto-resize on
load if device is mobile, removed debug.
* Add upstream Rev. 3072:
- Update: UPGRADE,
docs/CALLER_ID_NAME_CODES.txt,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1534.sql,
extras/upgrade_2.14.sql,
www/agc/manager_send.php,
www/agc/vicidial.php,
www/vicidial/admin.php,
www/vicidial/admin_modify_lead.php,
www/vicidial/help_documentation.txt,
www/vicidial/user_stats.php: Added MuteRecording function.
- New: www/agc/images/vdc_LB_mute_recording_AVAILABLE.gif,
www/agc/images/vdc_LB_mute_recording_AVAILABLE_es.gif,
www/agc/images/vdc_LB_mute_recording_AVAILABLE_jp.gif,
www/agc/images/vdc_LB_mute_recording_DISABLED.gif,
www/agc/images/vdc_LB_mute_recording_DISABLED_es.gif,
www/agc/images/vdc_LB_mute_recording_DISABLED_jp.gif,
www/agc/images/vdc_LB_mute_recording_ON.gif,
www/agc/images/vdc_LB_mute_recording_ON_es.gif,
www/agc/images/vdc_LB_mute_recording_ON_jp.gif.
* Add upstream Rev. 3073:
- Update: bin/AST_CRON_audio_1_move_VDonly.pl,
www/vicidial/help_documentation.txt: Added code to check for
agent-muted recordings.
* Add upstream Rev. 3074:
- Update: extras/MySQL_AST_CREATE_tables.sql: Set new parameter.
* Add upstream Rev. 3075:
- Update: www/vicidial/admin.php: Added indicators for lists being assigned
to non-existing campaigns.
* Add upstream Rev. 3076:
- Update: UPGRADE,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1534.sql,
extras/upgrade_2.14.sql,
www/agc/vdc_db_query.php,
www/vicidial/admin.php,
www/vicidial/help_documentation.txt: Added more hide_call_log_info
options.
* Add upstream Rev. 3077:
- Update: www/vicidial/AST_timeonVDADall.php: Fix for columns display
issue #1141.
* Add upstream Rev. 3078:
- Update: www/vicidial/non_agent_api.php: Fix for update_lead custom fields
issue #1134.
* New experimental/innodb/*: Experimental InnoDB Database Engine.
* Fix CVE-2019-9654:
- Update: www/agc/vicidial.php: Remove all passwords from default URLDecode.
* Fix open port 5038:
- Update: docs/conf_examples/manager.conf.sample,
docs/conf_examples/manager.conf.sample-1.8,
docs/conf_examples/manager.conf.sample-13: Bind interface only on
127.0.0.1.
* Fix hangup handling:
- Update: www/agc/conf_exten_check.php.
* Use own position for PauseName:
- Update: www/agc/vicidial.php.
* Set error reporting level E_NOTICE only if $DB is set:
- Update: agc/conf_exten_check.php.
* Don't use date in logfilename:
- Update: agi/agi-VDAD_local_optimize.agi.
* Add missing ':
- Update: vicidial/admin.php.
* Release 2.25.28 2019-03-23:
- First release from SNCT GmbH.
- This is the last stable release with the old agent interface.
- I dedicate this release to my girlfriend.
2.25.27
[Jörg Fring-Fürst]
* Correct typo:
- www/agc/vicidial.php,
www/vicidial/admin.php.
* Release 2.25.27 2018-06-05.
2.25.26
[Jörg Frings-Fürst]
* www/vicidial/AST_stat_agent1.php:
- Add Campaign status.
* New LICENSE.
* New license/AGPLv3.
* New silence files with length 1 - 10 sec..
* New DB-Schema 1533:
- New extras/mysql_update/mysql-1533.sql.
- Changed extras/upgrade_2.14.sql,
extras/MySQL_AST_CREATE_tables.sql.
* New function AutoAnswer (2018-007):
- Changed www/vicidial/admin.php,
agi/agi-VDAD_ALL_inbound.agi,
bin/ADMIN_keepalive_ALL.pl,
bin/AST_update.pl,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1533.sql,
extras/upgrade_2.14.sql,
www/agc/vicidial.php.
* bin/ADMIN_backup.pl:
- Add /etc/flyingpenguin.
* Change license to AGPLv3:
- Changed bin/ADMIN_backup.pl,
www/vicidial/AST_stat_agent1.php,
agi/agi-record_prompts.agi,
bin/ADMIN_keepalive_ALL.pl
* Add upstream Rev. 2939:
- Changed UPGRADE,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1533.sql,
extras/upgrade_2.14.sql,
www/agc/vicidial.php,
www/vicidial/admin.php,
www/vicidial/help.php: Added script_top_dispo feature.
* Add upstream Rev. 2940:
- Changed UPGRADE,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1533.sql,
extras/upgrade_2.14.sql,
www/vicidial/AST_VICIDIAL_hopperlist.php,
www/vicidial/admin.php,
www/vicidial/admin_modify_lead.php,
www/vicidial/help.php: Added bulk change function for campaign a. ingroup
ranks in user modify page, Added source_id_display system option.
* Add upstream Rev. 2941:
- Changed www/vicidial/admin_modify_lead.php: Added CIDdisplay.
* Add upstream Rev. 2942:
- Changed www/vicidial/AST_parkstats.php: Added unique lead ID count.
* Add upstream Rev. 2943:
- Changed www/agc/vicidial.php: Fix for lead search screen hidden fields,
issue #1079.
* Add upstream Rev. 2944:
- Changed New bin/AST_expired_list_exporter.pl.
- www/vicidial/admin.php,
www/vicidial/admin_lists_custom.php:Translated phrases fixes, issue #1081.
* Add upstream Rev. 2945:
- Changed www/agc/functions.php: Added entry_date as custom field SCRIPT
type variable.
* Add upstream Rev. 2946:
- Changed agi/agi-VDAD_ALL_inbound.agi: Added source_id as optional channel
variable to populate when inserting new leads.
* Add upstream Rev. 2947:
- Changed bin/FastAGI_log.pl,
www/agc/api.php,
www/agc/vicidial.php: Fix for dial_ingroup error message on external_dial
function.
* Add upstream Rev. 2948:
- Changed docs/AGENT_API.txt: Change ERORR to NOTICE for one tag.
* Add upstream Rev. 2949:
- Changed www/vicidial/AST_CLOSERstats.php,
www/vicidial/AST_CLOSERstats_v2.php,
www/vicidial/user_stats.php: Fix for user time calculation,
subtracted queue_seconds.
* Add upstream Rev. 2950:
- Changed www/vicidial/admin_bulk_tools.php: Updated column labels in user
copy function to add ones that had been created since script was made.
* Add upstream Rev. 2951:
- changed www/vicidial/AST_admin_template_maker.php,
www/vicidial/admin_listloader_fourth_gen.php: Enforce User Group campaign
permissions for templates based on list_id.
* Add upstream Rev. 2952:
- Changed UPGRADE,
docs/CALL_URL_FEATURES.txt,
www/agc/functions.php,
www/agc/vdc_script_display.php,
www/agc/vicidial.php: Added code for LOCALFQDN conversion to browser
used server URL script iframes.
* Add upstream Rev. 2953:
- Changed www/vicidial/admin_campaign_multi_alt.php: Added screen colors.
* Add upstream Rev. 2954:
- Changed dwww/agc/vicidial.php: Typo.
* Add upstream Rev. 2955:
- Changed www/vicidial/realtime_report.php: Added fix for WebRTC webphone
microphone permissions.
* Add upstream Rev. 2956:
- Changed www/vicidial/admin.php,
www/vicidial/admin_bulk_tools.php,
www/vicidial/list_download.php: Added download of CID Group records
feature.
* Add upstream Rev. 2957:
- Changed www/vicidial/list_download.php: Set row[3] to 'n' if empty.
* Add upstream Rev. 2958:
- Changed www/vicidial/AST_agent_performance_detail.php: Fixed display bug
for individual user selection.
* Add upstream Rev. 2959:
- Changed UPGRADE,
docs/NON-AGENT_API.txt,
www/vicidial/admin.php,
www/vicidial/non_agent_api.php: Added update_did non-agent API function.
* Add upstream Rev. 2960:
- Changed bin/AST_output_update.pl,
bin/AST_phone_update.pl,
bin/AST_send_action_child.pl: Updated telnet login process to work with
newer Asterisk versions.
* Add upstream Rev. 2961:
- Changed bin/VICIDIAL_fix_list_statuses.pl: Added look-ups from archive
log tables if no recent log entries found.
* Add upstream Rev. 2962:
- Changed www/agc/vicidial.php: Fix for API Hangup after dial timeout.
* Add upstream Rev. 2963:
- Changed UPGRADE,
bin/ADMIN_archive_log_tables.pl,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1533.sql,
extras/upgrade_2.14.sql,
www/agc/vdc_db_query.php,
www/agc/vicidial.php,
www/vicidial/admin.php,
www/vicidial/admin_modify_lead.php,
www/vicidial/help.php,
www/vicidial/user_stats.php: Added vicidial_agent_function_log archiving,
Added Pause Code manager approval feature, Added switch_lead logging.
* Add upstream Rev. 2964:
- Changed UPGRADE,
docs/CALL_URL_FEATURES.txt,
www/agc/vdc_db_query.php,
www/vicidial/admin.php: Added Dispo URL Filter feature.
* Add upstream Rev. 2965:
- Changed www/vicidial/call_report_export.php: Fix for missing call notes
on inbound calls.
* Add upstream Rev. 2966:
- Changed www/agc/vdc_db_query.php: Fix for not using campaign in
vicidial_campaign_statuses queries.
* Add upstream Rev. 2967:
- Changrd bin/AST_VDhopper.pl: Fix for list mix to use call count limit on
initial count, issue #1094.
* Add upstream Rev. 2968:
- Changed dispo_move_list.php: Added multi_trigger option.
* Add upstream Rev. 2969:
- Changed bin/AST_conf_update.pl,
bin/AST_conf_update_3way.pl,
docs/CALLER_ID_NAME_CODES.txt,
www/vicidial/admin.php,
www/vicidial/help.php: Fix for high-volume systems, added varibles to
hangup queryCID.
* Add upstream Rev. 2970:
- Changed www/agc/vicidial.php: Moved AGENT TIME link and Dialable Leads
display to not overlap.
* Add upstream Rev. 2971:
- Changed www/vicidial/admin_search_lead.php: Fix for slave db use,
issue #1092.
* Add upstream Rev. 2972:
- Changed www/vicidial/lead_report_export.php: Fix for missing header row
in translated language, issue #1090.
* Add upstream Rev. 2973:
- Changed UPGRADE,
agi/agi-VDAD_ALL_inbound.agi,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1533.sql,
extras/upgrade_2.14.sql,
www/vicidial/admin.php,
www/vicidial/help.php,
www/vicidial/vicidial_stylesheet.php: Added in-group
populate_lead_source, populate_lead_vendor options.
* Fix error messages while saving lists.
* Add upstream Rev. 2974:
- Changed www/agc/options-example.php,
www/agc/vicidial.php: Added #INSERT_first_onload variable.
* Add upstream Rev. 2975:
- Changed UPGRADE,
agi/park_CID.agi,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1533.sql,
extras/upgrade_2.14.sql,
www/vicidial/admin.php,
www/vicidial/help.php: Added inbound_groups-park_ext entry.
* Add upstream Rev. 2976:
- New www/vicidial/display_help.php,
www/vicidial/help.js
- Changed UPGRADE,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1533.sql,
extras/upgrade_2.14.sql,
www/agc/css/vicidial_stylesheet.css,
www/agc/functions.php,
www/agc/vdc_db_query.php,
www/agc/vdc_form_display.php,
www/agc/vicidial.php,
www/vicidial/admin_lists_custom.php,
www/vicidial/admin_modify_lead.php,
www/vicidial/help.php,
www/vicidial/vicidial_stylesheet.php: Added code for SWITCH field type.
* Remove use of prompt_count.txt (2018-008):
- Changed: agi/agi-record_prompts.agi,
bin/ADMIN_keepalive_ALL.pl,
bin/ADMIN_backup.pl,
readme.fp.
* Change password handling (2018-009):
- Change database field to COLLATE utf8_bin to use case sensitiv passwords.
- Allow all chars.
- New www/tools/UserHandling.php.
- New table vicidial_faillogin_log.
* Add upstream Rev. 2977:
- Changed agi/agi-VDAD_local_optimize.agi,
bin/AST_flush_DBqueue.pl,
bin/AST_update_AMI2.pl: Changed to use server-specific
cid_channels_recent table.
* Add upstream Rev. 2978:
- Changed bin/AST_CRON_audio_3_ftp.pl,
bin/AST_VDsales_export_SFTPSSH2.pl: Added --YearYMDdatedir option.
* Add upstream Rev. 2979:
- Changed: UPGRADE,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1533.sql,
extras/upgrade_2.14.sql,
www/vicidial/AST_API_log_report.php,
www/vicidial/AST_CLOSER_service_level.php,
www/vicidial/AST_IVRfilter.php,
www/vicidial/AST_IVRstats.php,
www/vicidial/AST_LISTS_campaign_stats.php,
www/vicidial/AST_LISTS_pass_report.php,
www/vicidial/AST_LISTS_stats.php,
www/vicidial/AST_OUTBOUNDsummary_interval.php,
www/vicidial/AST_VDADstats.php,
www/vicidial/AST_admin_template_maker.php,
www/vicidial/AST_inbound_forecasting.php,
www/vicidial/AST_performance_comparison_report.php,
www/vicidial/AST_recording_log_report.php,
www/vicidial/AST_rt_monitor_log_report.php,
www/vicidial/AST_rt_whiteboard_rpt.php,
www/vicidial/AST_source_vlc_status_report.php,
www/vicidial/AST_team_performance_detail.php,
www/vicidial/AST_user_group_hourly_detail.php,
www/vicidial/AST_user_group_hourly_detail_v2.php,
www/vicidial/AST_usergroup_login_report.php,
www/vicidial/EXAMPLEcustom_report_links.html,
www/vicidial/Erlang_report.php,
www/vicidial/admin.php,
www/vicidial/admin_NANPA_updater.php,
www/vicidial/admin_amm_multi.php,
www/vicidial/admin_bulk_tools.php,
www/vicidial/admin_email_accounts.php,
www/vicidial/admin_header.php,
www/vicidial/admin_languages.php,
www/vicidial/admin_listloader_fourth_gen.php,
www/vicidial/admin_lists_custom.php,
www/vicidial/admin_phones_bulk_insert.php,
www/vicidial/admin_soundboard.php,
www/vicidial/admin_url_multi.php,
www/vicidial/admin_user_list_new.php,
www/vicidial/audio_store.php,
www/vicidial/callbacks_bulk_move.php,
www/vicidial/callcard_admin.php,
www/vicidial/called_counts_multilist_report.php,
www/vicidial/display_help.php,
www/vicidial/fcstats.php,
www/vicidial/fcstats_detail.php,
www/vicidial/functions.php,
www/vicidial/list_merge.php,
www/vicidial/manager_chat_interface.php,
www/vicidial/medialog_inventory_report.php,
www/vicidial/user_territories.php,
www/vicidial/vicidial_custom_reports_admin.php,
New: www/vicidial/help_documentation.txt: Added new help display.
* Add upstream Rev. 2980:
- Changed: UPGRADE,
bin/ADMIN_keepalive_ALL.pl,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1533.sql,
extras/upgrade_2.14.sql,
www/agc/vdc_db_query.php,
www/agc/vicidial.php,
www/vicidial/admin.php,
www/vicidial/help_documentation.txt: Added reset of hopper_calls_today,
Added support for users-max_hopper_calls feature.
* Add upstream Rev. 2981:
- Changed bin/AST_CRON_audio_4_ftp2_FTPSSL.pl: Added --noping option.
* Add upstream Rev. 2982:
- Changed bin/AST_CRON_audio_3_ftp_FTPSSL.pl: Add Debug output.
- New bin/AST_CRON_audio_4_ftp2_FTPSSL.pl.
* Add upstream Rev. 2983:
Changed docs/ASTERISK_13.txt: Renew text.
* Add upstream Rev. 2984:
- Changed UPGRADE,
bin/AST_VDadapt.pl,
bin/AST_flush_DBqueue.pl,
bin/AST_send_URL.pl,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1533.sql,
extras/upgrade_2.14.sql,
www/vicidial/admin.php,
www/vicidial/help_documentation.txt,
New extras/vdc_webpowerswitch.php: Added Waiting Call On/Off URL
feature for in-groups.
* Add upstream Rev. 2985:
- Changed agi/agi-dtmf.agi: Fix for inconsistency problem, issue #1099.
* Add upstream Rev. 2986:
- Changed www/agc/vdc_db_query.php: Added use of screen labels in search
results, Issue #1104.
* Add upstream Rev. 2987:
- Change UPGRADE,
agi/agi-VDAD_ALL_inbound.agi,
bin/AST_send_URL.pl,
extras/MySQL_AST_CREATE_tables.sql,
extras/mysql_update/mysql-1533.sql,
extras/upgrade_2.14.sql,
www/vicidial/admin.php,
www/vicidial/help_documentation.txt: Added enter_ingroup_url feature.
* Add upstream Rev. 2988:
- Changed agi/agi-VDAD_ALL_inbound.agi,
bin/FastAGI_log.pl: Changed closer logs for AGENTDIRECT calls to log
destination user.
* Add upstream Rev. 2989:
- Changed UPGRADE,
www/agc/manager_send.php,
www/agc/vdc_db_query.php,
www/agc/vicidial.php: Added more agent debug output for recordings.
* Add upstream Rev. 2990:
- New extras/vdc_hipchat.php.
* Add upstream Rev. 2991:
- New bin/AST_lead_select_export.pl.
* Add upstream Rev. 2992:
- Changed www/vicidial/help_documentation.txt.
* bin/AST_CRON_WallBoard3_gen.php: Disable test against 0201 for forwarding.
* Issue #FP0001: Remove duplicate table column anyone_callback_inactive_lists.
* Add upstream Rev. 2993:
- Changed extras/SCRIPT_multirecording.php,
extras/SCRIPT_multirecording_AJAX.php,
www/vicidial/QM_live_monitor.php,
www/vicidial/admin.php,
www/vicidial/non_agent_api.php,
www/vicidial/xml_rpc_audio_server_vicidial.php: Switched to mysqli,
fixed variable filtering bug, Added debug logging, Fix for QM live
monitoring.
* Add upstream Rev. 2994:
- Changed agi/VD_amd.agi: Fix for missing called_count value in
vicidial_log insertions.
* Add upstream Rev. 2995:
- Changed www/vicidial/admin.php: Small DID bug fix, added Call Menus list
on Modify Call Time page.
* Extension of the search function around street and city (2018-009):
- Changed www/vicidial/admin_search_lead.php.
* Add upstream Rev. 2996:
- Changed agi/agi-VDAD_ALL_inbound.agi,
bin/AST_send_URL.pl: Added user variable sending option on
enter_ingroup_url feature.
* Add upstream Rev. 2997:
- Changed extras/SCRIPT_multirecording.php: fixed variable filtering bug.
* Release 2.25.26 2018-06-04.
2.25.25b