-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodules-16.0.xml
3040 lines (3040 loc) · 365 KB
/
modules-16.0.xml
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
<xml> <module><accountcodepreserve><rawname>accountcodepreserve</rawname><repo>extended</repo><name>Preserve Accountcode</name><version>16.0.0.1</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv2</license><licenselink>www.gnu.org/licenses/gpl-2.0.txt</licenselink><type>setup</type><category>Admin</category><description>This module preservers the first callee's account code, that has an accountcode, that it encounters. This preserved accoutcode will be used to set the CDR(accountcode) for any outbound calls that result from any type of redirected call (CF, VmX, Follow-Me, etc.). The account code for each user is pulled out of their associated device settings, which means this is only supported in extension mode and would have to be updated for deviceanduser mode, requiring a new accountcode field to be defined for the user on the extension/user screen.
</description><changelog>
*16.0.0.1* Initial Release
</changelog><supported><version>16.0</version></supported><location>packages/accountcodepreserve/accountcodepreserve-16.0.0.1.tgz.gpg</location><md5sum>ce535db8cd9a07c85262c9d595ea459e</md5sum><signed><type>gpg</type><sha1>62a50a441b77ce7c86f92ec4e01e9e2612e3469f</sha1></signed><sha1>2f3084e9a124aa9553d16e0ccb63a29c0da79d51</sha1><packaged>1617187400</packaged></accountcodepreserve><allowlist><rawname>allowlist</rawname><repo>unsupported</repo><name>Allow List</name><version>16.0.4</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><category>Admin</category><description>
This module is used to manage a system wide list of allowlisted callers.
</description><changelog>
*16.0.4* FREEPBX-24162
*16.0.3* FREEPBX-24158
*16.0.2* Fix for splicing into wrong location in dial plan placing it before the blacklist checking
*16.0.1* Initial 16.0 release
</changelog><depends><module>core ge 16.0.56.28</module><module>cdr</module></depends><supported><version>16.0</version></supported><console><command><name>allowlist</name></command></console><signed><type>gpg</type><sha1>d7ce40018621211f142637c304e784261de451cc</sha1></signed><location>packages/allowlist/allowlist-16.0.4.tgz.gpg</location><md5sum>d025d51f5d4732e6a1238d55f625e3b6</md5sum><sha1>e16fd147e0fa195f08bd63fb9451a62fbb047e36</sha1><packaged>1682653532</packaged></allowlist><amd><rawname>amd</rawname><repo>standard</repo><name>AMD</name><version>16.0.3</version><publisher>Sangoma Technologies Inc.</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><category>Applications</category><description>This module is used to manage AMD. The AMD application attempts to detect answering machines at the beginning of outbound calls</description><changelog>
*16.0.3* Reverting Bootstrap and dependent libs fixes
*16.0.2* FREEI-4793
*16.0.1* Initial 16.0 release
</changelog><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>9b8ae2dc842fa84a903f1b3410dd35c824ed3e9e</sha1></signed><location>packages/amd/amd-16.0.3.tgz.gpg</location><md5sum>ad69812b8ca40ec2c752ce9c650a0ca9</md5sum><sha1>312abccb8611b818936fcabf33bd62606d3fb1a7</sha1><packaged>1653291537</packaged></amd><announcement><rawname>announcement</rawname><repo>standard</repo><name>Announcements</name><version>16.0.6</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><changelog>
*16.0.6* Reverting Bootstrap and dependent libs fixes
*16.0.5* FREEI-4793
*16.0.4* Packaging of ver 16.0.4
*16.0.3* Packaging of ver 16.0.3
*16.0.2* Packaging of ver 16.0.2
*16.0.1alpha* 16.0.1 alpha release
</changelog><category>Applications</category><more-info>https://wiki.freepbx.org/display/FPG/Announcements+Module+User+Guide</more-info><description>
Plays back one of the system recordings (optionally allowing the user to skip it) and then goes to another destination.
</description><depends><version>16.0.10.27</version><module>recordings ge 16.0.4</module></depends><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>20617180d001cc87532831a8482f8d11d2c37245</sha1></signed><location>packages/announcement/announcement-16.0.6.tgz.gpg</location><md5sum>eb607b8d1f861f157dd68117358afee2</md5sum><sha1>74066cb24e77a7a47d79cfbab81620e988bbbff5</sha1><packaged>1653289599</packaged></announcement><api><rawname>api</rawname><repo>standard</repo><name>PBX API</name><version>16.0.12</version><publisher>Sangoma Technologies Corporation</publisher><license>AGPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><category>Connectivity</category><changelog>
*16.0.12* FREEI-65
*16.0.11* Packaging of ver 16.0.11
*16.0.10* Reverting Bootstrap and dependent libs fixes
*16.0.9* FREEI-4793
*16.0.8* Packaging of ver 16.0.8
*16.0.7* FREEI-3539 fixed the issue with creation
*16.0.6* FREEPBX-23336
*16.0.5* FREEPBX-23272
*16.0.4.10* FREEI-2891 Created new rest api base class to create rest api unit test cases
*16.0.4.9* FREEPBX-23136
*16.0.4.8* FREEI-4012
*16.0.4.7* Packaging of ver 16.0.4.7
*16.0.4.6* Packaging of ver 16.0.4.6
*16.0.4.5* FREEI-3890 added error log for gql apis
*16.0.4.4* FREEI-3539 Add new API port to URLs to Client Credentials summary
*16.0.4.3* Packaging of ver 16.0.4.3
*16.0.4.2* Packaging of ver 16.0.4.2
*16.0.4.1* bump
*16.0.4* Packaging of ver 16.0.4
*16.0.3* Packaging of ver 16.0.3
*16.0.2* Packaging of ver 16.0.2
*16.0.1alpha* 16.0.1 alpha release
</changelog><description>The API module allows administrators to configure and manage FreePBX remotely through automated. As an administrator you can use other languages to control your PBX systems.</description><more-info>https://wiki.freepbx.org/display/FPG/API</more-info><depends><module>pm2 ge 16.0.4</module></depends><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>424fbb75dc0671b7e59e299a99c46a3402d8355c</sha1></signed><location>packages/api/api-16.0.12.tgz.gpg</location><md5sum>3e4f4c5980ea27cac61625b73b51c19e</md5sum><sha1>edd7bb8bbba91c45f5ae46a63eaed11c000da8f1</sha1><packaged>1684299491</packaged></api><arimanager><rawname>arimanager</rawname><repo>extended</repo><name>Asterisk REST Interface Users</name><version>16.0.12</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><category>Settings</category><changelog>
*16.0.12* Packaging of ver 16.0.12
*16.0.11* Packaging of ver 16.0.11
*16.0.10* Packaging of ver 16.0.10
*16.0.9* Packaging of ver 16.0.9
*16.0.8* Packaging of ver 16.0.8
*16.0.7* Packaging of ver 16.0.7
*16.0.6* Packaging of ver 16.0.6
*16.0.5* Packaging of ver 16.0.5
*16.0.4* FREEPBX-22701 Update the length allowed for the username.
*16.0.3* Packaging of ver 16.0.3
*16.0.2* Packaging of ver 16.0.2
*16.0.1alpha* 16.0.1 alpha release
</changelog><description>
Asterisk 12 introduces the Asterisk REST Interface (ARI), a set of RESTful API's for building Asterisk based applications. This module provides the ability to add and remove ARI users.
</description><more-info>https://wiki.freepbx.org/display/FPG/Asterisk+REST+Interface+Users+Module</more-info><depends><module>manager</module><engine>asterisk 12</engine></depends><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>fcd6e800cbec621aff5e081e24f4a0f1d39196ff</sha1></signed><location>packages/arimanager/arimanager-16.0.12.tgz.gpg</location><md5sum>f3c3533bf1e305599645e105813bc064</md5sum><sha1>dace0c444dd2bf7a3e8dfe375e88d4b031106bd4</sha1><packaged>1678778908</packaged></arimanager><asterisk-cli><rawname>asterisk-cli</rawname><repo>extended</repo><name>Asterisk CLI</name><version>16.0.8</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><category>Admin</category><description>Provides an interface allowing you to run a command as if it was typed into Asterisk CLI</description><more-info>https://wiki.freepbx.org/display/FPG/Asterisk+CLI+Module</more-info><depends><engine>asterisk</engine></depends><location>packages/asterisk-cli/asterisk-cli-16.0.8.tgz.gpg</location><md5sum>74d45a99039eed06b08c7266ccc69b32</md5sum><changelog>
*16.0.8* FREEPBX-23712
*16.0.7* FREEPBX-23583
*16.0.6* FREEPBX-23519: asterisk-cli change ajax queries from type get to type post
*16.0.5* Reverting Bootstrap and dependent libs fixes
*16.0.4* Packaging of ver 16.0.4
*16.0.3* FREEI-4793
*16.0.2* Packaging of ver 16.0.2
*16.0.1* 16.0 Release
</changelog><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>65c518fc418f6c957f5a4445bcb21605977fd58d</sha1></signed><sha1>4ad28941bfda2949175eb2fdc6d8f99a57071bb7</sha1><packaged>1663845109</packaged></asterisk-cli><asteriskinfo><rawname>asteriskinfo</rawname><repo>standard</repo><name>Asterisk Info</name><version>16.0.10</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><category>Reports</category><description>
Provides a snapshot of the current Asterisk configuration
</description><more-info>https://wiki.freepbx.org/display/FPG/Asterisk+Info+Module</more-info><changelog>
*16.0.10* Packaging of ver 16.0.10
*16.0.9* FREEPBX-24037
*16.0.8* FREEPBX-24037
*16.0.7* FREEPBX-24037
*16.0.6* FREEPBX-23907
*16.0.5* Packaging of ver 16.0.5
*16.0.4* FREEI-2356 Adding Dahdi into asteriskinfo
*16.0.3* Packaging of ver 16.0.3
*16.0.2* FREEI-1585 Initializing $arr_registries array
*16.0.1alpha* 16.0.1 alpha release
</changelog><depends><module>arimanager</module></depends><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>58e691e5a44d8c4ec39cebff53d0b386356662bd</sha1></signed><location>packages/asteriskinfo/asteriskinfo-16.0.10.tgz.gpg</location><md5sum>2ea32cea5e28820eb4e05142072f7cbf</md5sum><sha1>10e86b4a87a3ceec6e5807116c92ca4244e1bcb4</sha1><packaged>1679913511</packaged></asteriskinfo><backup><rawname>backup</rawname><repo>standard</repo><name>Backup & Restore</name><version>16.0.67</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><category>Admin</category><description>Backup & Restore for your FreePBX environment</description><more-info>https://wiki.freepbx.org/display/F2/Backup+and+Restore+Module</more-info><depends><module>filestore ge 16.0.13</module><version>16.0.10.14</version></depends><changelog>
*16.0.67* FREEPBX-24178
*16.0.66* FREEI-5549
*16.0.65* FREEPBX-24115
*16.0.64* Packaging of ver 16.0.64
*16.0.63* bump
*16.0.62.12* Packaging of ver 16.0.62.12
*16.0.62.11* Packaging of ver 16.0.62.11
*16.0.62.10* Packaging of ver 16.0.62.10
*16.0.62.9* FREEI-5769
*16.0.62.8* FREEPBX-24091
*16.0.62.7* FREEPBX-23751
*16.0.62.6* FREEPBX-23678
*16.0.62.5* FREEPBX-23705
*16.0.62.4* FREEI-5224 runBackup Gql api status update
*16.0.62.3* FREEPBX-23726
*16.0.62.2* FREEI-5224
*16.0.62.1* FREEI-5145 restorebackup api fixed
*16.0.62* FREEI-5103 force backup to run asynchronous
*16.0.61* FREEI-5103
*16.0.60* Packaging of ver 16.0.60
*16.0.59* FREEPBX-23559 and FREEPBX-23552
*16.0.58* FREEPBX-23552
*16.0.57* FREEI-4830 skip restoring trunks and routes
*16.0.56* Reverting Bootstrap and dependent libs fixes
*16.0.55* Packaging of ver 16.0.55
*16.0.54* FREEI-4878 Restoring backup not updating the timezone in sysadmin module
*16.0.53* FREEI-4793
*16.0.52* FREEPBX-23431 Backup with only custom items fixed
*16.0.51* bump
*16.0.50.13* FREEI-4436 - Restore - Ability to select modules to ignore
*16.0.50.12* FREEPBX-23356
*16.0.50.11* FREEI-4610 Restore from UCC1 to UCC2 fails
*16.0.50.10*
*16.0.50.9* FREEPBX-23253
*16.0.50.8* FREEPBX-22977 replaced asort function flag from SORT_NUMERIC to SORT_STRING
*16.0.50.7* FREEI-4119 Issue restoring sms_messages table
*16.0.50.6* FREEI-4077 Modified removeAll function parameter
*16.0.50.5* FREEPBX-22783 Exception The given id seems invalid
*16.0.50.4* FREEI-3830 PBXact 16 - Extension license count is not showing properly
*16.0.50.3* FREEI-3770 GQL API - Added new test cases and removed base64 encoding on id while returning id
*16.0.50.2* FREEI-3477 backup restore issue
*16.0.50.1* bump
*16.0.50* FREEI-3436 Adding validation for BackupJob GQL API
*16.0.49* FREEI-3452 Refactored updateBackup GQL API
*16.0.48* FREEI-3441 Fixing addBackup and updateBackup GQL API
*16.0.47* FREEI-3435 updateBackup and deleteBackup GQL API
*16.0.46* FREEI-3432 changing fetch fileDetails to backupConfigurations in fetchAllBackupConfigurations API
*16.0.45* FREEI-3392 Created GQL API to fetchAllBackups and Unit tests
*16.0.44* FREEI-3089 bug fixes for all moduele and validation on invalid module name
*16.0.43* FREEPBX-22335
*16.0.42* Packaging of ver 16.0.42
*16.0.41* FREEI-3089 updated utest
*16.0.40* Packaging of ver 16.0.40
*16.0.39* FREEI-3072-backup-modules-issue
*16.0.38* FREEI-3039
*16.0.37* FREEPBX-22218 asterisk older version syntax was causing the issue
*16.0.36* FREEPBX-22218 Can't restore v12 backup on v15
*16.0.35* FREEI-2667 Backup fails with PHP Fatal error: Allowed memory size
*16.0.34* FREEPBX-22030 Restoring Queue fails if callconfirm_id, agentannounce_id or joinannounce_id is not set
*16.0.33* FREEPBX-21932 Restore fails when no custom files selected
*16.0.32* FREEPBX-21959 Legacy Restore Error
*16.0.31* FREEI-2062 Restore to 15 from a 13/14 backup not restoring POMPS backup settings
*16.0.30* FREEI-2076 15 Backup Erroring with SoundLang
*16.0.29* FREEI-2066 added option to skip post restore hooks
*16.0.28* FREEPBX-21755 Backup maintenance issue : deleting file if backupname appended as directory
*16.0.27* FREEI-2036 Ticket#956628 - PBXact 15 - Warm Spare Restore Failing
*16.0.26* Packaging of ver 16.0.26
*16.0.25* FREEI-1939 Legacy backup restore on FreePBX 15 not restoring the firewall module's trusted networks
*16.0.24* FREEI-1927 Backup file not getting saved if the local path is set to "/var/spool/asterisk/backup"
*16.0.23* FREEPBX-21664 Warm Spare backup removes executable permission on AGI scripts
*16.0.22* FREEPBX-21660 FreePBX Backup Custom files/directories
*16.0.21* FREEI-1905 default taking file based operation during restore
*16.0.20* Avoid restore errors when modules use foreign key constraints.
*16.0.19* Fixing FREEI-1896
*16.0.18* FREEI-1882 Control inmemory true false option via fwconsole backup command
*16.0.17* FREEI-1764
*16.0.16* FREEI-1764 show the hook file name
*16.0.15* FREEI-1858 FREEI-1857
*16.0.14* FREEI-1836 Throwing error if restore process is not able to load the manifest file of backup
*16.0.13* FREEI-1838 time out issue
*16.0.12* FREEI-1838 Cdr restore timeout issue
*16.0.11* Fixing FREEI-1780 Improving code to
*16.0.10* FREEI-1791 Issue restoring a backup to FPBX15
*16.0.9* FREEI-1771 Adding by default /etc/asterisk directory while creating backup
*16.0.8* FREEI-1717 Backup module not sending the failure mail when the backup got failed due to asterisk not running.
*16.0.7* FREEI-1765 typo error
*16.0.6* Added custom files functionality code
*16.0.5* Fixing FREEI-1710 Increasing legacy cdr restore timeout to 5 hours
*16.0.4* FREEI-1567 logs created by new freepbxc 15 backup appear to be unmanaged
*16.0.3* FREEI-1551 https setup not replicating to warm spare
*16.0.2* Fixing FREEPBX-21456 Adding backup file under "backup job name" directory
*16.0.1alpha* 16.0.1 alpha release
</changelog><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>8717b11aebfdc44dae525b81a70c34ca3473cacb</sha1></signed><location>packages/backup/backup-16.0.67.tgz.gpg</location><md5sum>28a03135d14e6df8f38f5ba7204db9b7</md5sum><sha1>f262f4f119335e1dd255b70e0c26842cf94d1042</sha1><packaged>1684308888</packaged></backup><blacklist><rawname>blacklist</rawname><repo>standard</repo><name>Blacklist</name><version>16.0.20</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><category>Admin</category><description>This module is used to manage a system wide list of blocked callers</description><more-info>https://wiki.freepbx.org/display/F2/Blacklist+Module</more-info><changelog>
*16.0.20* FREEI-5724 Optmized sql queries
*16.0.19* Packaging of ver 16.0.19
*16.0.18* FREEPBX-23990
*16.0.17* FREEPBX-23789 Removed case sensitive check.
*16.0.16* FREEPBX-23776 Add advanced feature to disable call count
*16.0.15* FREEPBX-23637
*16.0.14* Packaging of ver 16.0.14
*16.0.13* Reverting Bootstrap and dependent libs fixes
*16.0.12* FREEI-4793
*16.0.11* FREEI-4665
*16.0.10* FREEPBX-23360
*16.0.9* FREEI-4665 Fixed blacklist bugs and added new api to set blacklist settings
*16.0.8* FREEPBX-23086: Add i18n detection to phrases that are not detected
*16.0.7* Packaging of ver 16.0.7
*16.0.6* FREEPBX-22989 - Call Log in BlackList show date duplicate
*16.0.5* REEI-3374 Vuln-001 Stored Cross-Site Scripting
*16.0.4* FREEI-3281 FreePBX 16 to 16 backup and restore is not restoring the Blacklist data
*16.0.3* FREEI-2935-Blacklist-GUI-Issue
*16.0.2* Packaging of ver 16.0.2
*16.0.1alpha* 16.0.1 alpha release
</changelog><depends><module>core ge 16.0.56.24</module><module>cdr ge 16.0.11</module></depends><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>fd82a61da5d3f9412d45c662df63ca3f83ab2c54</sha1></signed><location>packages/blacklist/blacklist-16.0.20.tgz.gpg</location><md5sum>a7389a722d447785f9721849b80957b4</md5sum><sha1>fde45a06b25866dd157107ca045b457391dfbe10</sha1><packaged>1678873472</packaged></blacklist><bulkhandler><rawname>bulkhandler</rawname><repo>standard</repo><name>Bulk Handler</name><version>16.0.16</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><category>Admin</category><description>
Bulk Handler manages the bulk export or import of extensions, DIDs, user manager users, user manager groups, and contacts. You can export any of these as a CSV file. You can also upload a CSV file to save time versus having to enter each item individually. The module provides required/recommended headers for your CSV files.
</description><more-info>https://wiki.freepbx.org/display/FPG/Bulk+Handler</more-info><depends><version>13.0</version></depends><info></info><changelog>
*16.0.16* FREEPBX-23784 Add support for trunk import/export to Bulk Export for PJSIP Trunks
*16.0.15* FREEPBX-23729
*16.0.14* FREEI-5222 trimming both ends of csv columns
*16.0.13* Reverting Bootstrap and dependent libs fixes
*16.0.9* Packaging of ver 16.0.9
*16.0.8* SCD-113 Need to handle SCD bulk import
*16.0.7* Packaging of ver 16.0.7
*16.0.6* FREEPBX-23086: Add i18n detection to phrases that are not detected
*16.0.5* FREEPBX-23062 - Update js to use ajaxurl and usar show_help box info
*16.0.4* FREEI-4140 Import ID 0 is over the system limit (Bulk Handler)
*16.0.3* REEI-3374 Vuln-001 Stored Cross-Site Scripting
*16.0.2* Packaging of ver 16.0.2
*16.0.1* Initial 16.0 release
</changelog><supported><version>16.0</version></supported><console><command><name>bulkimport</name><alias>bi</alias></command></console><signed><type>gpg</type><sha1>ebbe6fc1744cec525ef225d537b13401bd1e1b01</sha1></signed><location>packages/bulkhandler/bulkhandler-16.0.16.tgz.gpg</location><md5sum>20264aa7d47928d20c88065e20c21701</md5sum><sha1>47679272ee93b6cf08338f1560bdeccdb0f73e0a</sha1><packaged>1668498438</packaged></bulkhandler><calendar><rawname>calendar</rawname><repo>standard</repo><name>Calendar</name><version>16.0.21</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><category>Applications</category><description>This module is used to manage calendar and time based events for FreePBX</description><more-info>https://wiki.freepbx.org/display/FPG/Calendar+Module</more-info><changelog>
*16.0.21* Packaging of ver 16.0.21
*16.0.20* FREEI-5762 and FREEI-1486
*16.0.19* FREEPBX-23999
*16.0.18* FREEPBX-23971 local calendar input date fix
*16.0.17* FREEPBX-23994
*16.0.16* Packaging of ver 16.0.16
*16.0.15* Packaging of ver 16.0.15
*16.0.14* FREEI-5514 and FREEI-5368 outlook Oauth integration
*16.0.13* FREEI-4918 TC with Calender event not matching correctly
*16.0.12* Reverting Bootstrap and dependent libs fixes
*16.0.7* FREEPBX-23170
*16.0.6* FREEI-1486 Added condition to throw error on invalid remote ical url
*16.0.5* FREEI-3690 Updated 3rd party library 'om/icalparser' to latest version
*16.0.4* FREEI-3290
*16.0.3* Packaging of ver 16.0.3
*16.0.2* FREEPBX-22109 Add API REST to control Calendars
*16.0.1alpha1* 16.0.1 alpha release
</changelog><depends><version>14.0.1rc1.18</version></depends><supported><version>16.0</version></supported><console><command><name>calendar</name></command></console><signed><type>gpg</type><sha1>1b13f2a5380b07368f7c26b6b526793e76992f63</sha1></signed><location>packages/calendar/calendar-16.0.21.tgz.gpg</location><md5sum>d8c9ab7ec913cf4c5210e6c73a2b9fd2</md5sum><sha1>055ebc0ba0c673d1c05c2daf0d6e337eff33b23c</sha1><packaged>1679572878</packaged></calendar><callback><rawname>callback</rawname><repo>extended</repo><name>Callback</name><version>16.0.4</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><description>A callback will hang up on the caller and then call them back, directing them to the selected destination.</description><more-info>https://wiki.freepbx.org/display/F2/Callback+Module</more-info><category>Applications</category><changelog>
*16.0.4* Reverting Bootstrap and dependent libs fixes
*16.0.3* FREEI-4793
*16.0.2* Packaging of ver 16.0.2
*16.0.1alpha* 16.0.1 alpha release
</changelog><depends><version>13.0.5</version></depends><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>40e4dbe911fdbd994dfb8c7c0da90ba9d96e2179</sha1></signed><location>packages/callback/callback-16.0.4.tgz.gpg</location><md5sum>5e4a73b7322c788ff2e53eafdfa5e8c4</md5sum><sha1>32968ba4a877762b661e1669df7739ae3219b6d1</sha1><packaged>1653289550</packaged></callback><callforward><rawname>callforward</rawname><repo>standard</repo><name>Call Forward</name><version>16.0.5</version><publisher>Sangoma Technologies Corporation</publisher><license>AGPLv3+</license><licenselink>http://www.gnu.org/licenses/agpl-3.0.txt</licenselink><changelog>
*16.0.5* FREEI-3608 whoops error on rebuild
*16.0.4* FREEI-3570 Add getWidgetListByModule method callforward
*16.0.3* FREEI-3333 callforward Restore issue ( advr)
*16.0.2* Packaging of ver 16.0.2
*16.0.1alpha* 16.0.1 alpha release
</changelog><description>The Call Forwarding module provides feature codes for call forwarding. Call Forwarding is used to forward calls from one user to another based on conditions such as busy, unavailable, and no answer.</description><more-info>https://wiki.freepbx.org/display/F2/Call+Forwarding+Module</more-info><category>Applications</category><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>8a7aa15f599d6baa0123e3684d470c0fac45859f</sha1></signed><location>packages/callforward/callforward-16.0.5.tgz.gpg</location><md5sum>e142dd3ca5b19fa4a49dee827a551417</md5sum><sha1>83497252214fd57de3ad0ac1a3d98f0cb8d0eb63</sha1><packaged>1627283436</packaged></callforward><callrecording><rawname>callrecording</rawname><repo>standard</repo><name>Call Recording</name><version>16.0.20</version><publisher>Sangoma Technologies Corporation</publisher><license>AGPLv3+</license><licenselink>http://www.gnu.org/licenses/agpl-3.0.txt</licenselink><candisable>no</candisable><canuninstall>no</canuninstall><category>Applications</category><description>
Provides much of the call recording functionality.
</description><more-info>https://wiki.freepbx.org/display/F2/Call+Recording+Module</more-info><changelog>
*16.0.20* FREEI-5848 FREEI-5574
*16.0.19* SCD-327
*16.0.18* SCD-327
*16.0.17* FREEI-5150 randomly the PBX doesn't record calls
*16.0.16* Reverting Bootstrap and dependent libs fixes
*16.0.15* FREEI-4793
*16.0.14* FREEI-4793
*16.0.13* FREEI-4685
*16.0.12* FREEPBX-23238 syntax error
*16.0.11* FREEPBX-23238 Syntax error
*16.0.10* FREEPBX-23089/Fix Variable References for MIXMON calls
*16.0.9* wrap MIXMON_POST, MONITOR_REC_OPTIONS and MONITOR_OPTIONS in EVAL() to properly pass dialplan vars into subsequent steps
*16.0.8* FREEI-3368 Removed hidden input field 'view' from the form
*16.0.7* FREEI-3505 Call Recording priority issue
*16.0.6* Packaging of ver 16.0.6
*16.0.5* FREEI-2933 Remove link to recording calls wiki on Inbound routes, other tab
*16.0.4* FREEI-2750 Recording option "Yes" overriding "Never"
*16.0.3* FREEI-2750 extension to extension call recording option
*16.0.2* FREEI-2750 Recording option "Yes" overriding "Never" (Ext to Ext calls)
*16.0.1alpha* 16.0.1 alpha release
</changelog><supported><version>16.0</version></supported><depends><module>core ge 12.0.7</module><version>13.0.5</version></depends><location>packages/callrecording/callrecording-16.0.20.tgz.gpg</location><md5sum>c444d159a8d14eef665cc7292807bb8c</md5sum><signed><type>gpg</type><sha1>698782d2789a797fbb768160d366b6ab134a7ed4</sha1></signed><sha1>59fec75c5c5e142f7af14acef30edb5728f349a4</sha1><packaged>1681372217</packaged></callrecording><callwaiting><rawname>callwaiting</rawname><repo>standard</repo><name>Call Waiting</name><description>Provides an option to turn on/off call waiting</description><category>Applications</category><version>16.0.5</version><more-info>https://wiki.freepbx.org/display/F2/Call+Waiting+Module</more-info><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><changelog>
*16.0.5* FREEPBX-22625 call waiting field is left blank in the import file then getting error
*16.0.4* FREEI-3608 whoops error on rebuild
*16.0.3* FREEI-3571 Add getWidgetListByModule method callwaitign module
*16.0.2* Packaging of ver 16.0.2
*16.0.1alpha* 16.0.1 alpha release
</changelog><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>ad004c30274d4bcfcbfa03008513730e0d25db2e</sha1></signed><location>packages/callwaiting/callwaiting-16.0.5.tgz.gpg</location><md5sum>0ff22f9b305fb74c93880a2fe085d6f3</md5sum><sha1>5a6ad32f0ef53e72926b03075360597043e108ce</sha1><packaged>1636426124</packaged></callwaiting><cdr><rawname>cdr</rawname><repo>standard</repo><description>Call Data Record report tools for viewing reports of your calls</description><name>CDR Reports</name><version>16.0.38</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><category>Reports</category><changelog>
*16.0.38* FREEPBX-24205
*16.0.37* FREEPBX-24205
*16.0.36* Packaging of ver 16.0.36
*16.0.35* FREEPBX-24076
*16.0.34* Packaging of ver 16.0.34
*16.0.33* FREEPBX-24076
*16.0.32* FREEI-5845
*16.0.31* Packaging of ver 16.0.31
*16.0.30* FREEPBX-23843 CDR Reporting does not display caller id correctly
*16.0.29* SCD-332 modified cdr fetch query to include entries when FMFM is enabled
*16.0.28* FREEPBX-23657 cdr module compressed backup and restore
*16.0.27* FREEPBX-23544 cdr serach multiple destination and outboud CID number
*16.0.26* FREEI-4975 CDR search with date range
*16.0.25* FREEI-4680 CDR report CSV file download issue fixed
*16.0.24* FREEI-4641 Hebrew issue with cnam cols
*16.0.23* FREEI-4641 Hebrew text not showing and entry line's data is mismatched in CDR
*16.0.22* FREEI-4641 Fixe Hebrew language with the CID Name when a CSV file is generated through the CDR module
*16.0.21* FREEPBX-23292 Graphql CDR API does not return the Disposition field
*16.0.20* FREEPBX-23292-graphql-cdr-api-does-not-return-the-disposition-field
*16.0.19* Packaging of ver 16.0.19
*16.0.18* SCD-135 call logs not shown if 'Use DPMA' option under endpoint global settings is set to 'No'
*16.0.17* FREEI-4147 Backup status 'Failure' without reason
*16.0.16* Packaging of ver 16.0.16
*16.0.15* FREEPBX-23141
*16.0.14* FREEI-3939 and FREEI-4209
*16.0.13* FREEI-3939 and FREEI-4209
*16.0.12* FREEI-3939 Added new input variables to query the CDR data by datetime range with unit test cases
*16.0.11* FREEI-3939 Refactored gql api to fetch all cdr's and added unit test cases
*16.0.10* FREEPBX-22979
*16.0.9* FREEI-3509 D-phone API for call_log takes time to show the entry
*16.0.8* FREEI-3446 getWidgetListByModule
*16.0.7* Fixing FREEPBX-8633 Added ", recordingfile, linkedid, peeraccount,
*16.0.6* Packaging of ver 16.0.6
*16.0.5* FREEI-2660 UCC timestamp mismatch on main CDR module
*16.0.4* FREEI-2099 extensions name shown incorrectly.
*16.0.3* FREEPBX-21776: User Edit &gt; UCP &gt; Call History &gt; CDR Access &gt; not displayed correctly
*16.0.2* database port missing
*16.0.1alpha* 16.0.1 alpha release
</changelog><depends><module>framework ge 13.0.1beta3.56</module><module>core ge 12.0.8</module><module>backup ge 16.0.63</module></depends><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>565bc8c9e69bc52ac9a67c3a085fddd931c16bee</sha1></signed><location>packages/cdr/cdr-16.0.38.tgz.gpg</location><md5sum>ef243a8ca1efd5e5e7421780326d9279</md5sum><sha1>3fdb4c08cfbfed363ce867b5518c464d3c589d26</sha1><packaged>1684760992</packaged></cdr><cel><rawname>cel</rawname><repo>standard</repo><name>Call Event Logging</name><version>16.0.16</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><changelog>
*16.0.16* Packaging of ver 16.0.16
*16.0.15* Packaging of ver 16.0.15
*16.0.14* FREEPBX-24075
*16.0.13* FREEPBX-23657 cel module compressed backup and restore
*16.0.12* Reverting Bootstrap and dependent libs fixes
*16.0.8* FREEI-4793
*16.0.7* FREEI-3533 Added function to get oldest to newest recordings and take backup of cel table for particular duration
*16.0.6* FREEI-4147 Backup status 'Failure' without reason
*16.0.5* FREEPBX-22696 Failure to restore cel data
*16.0.4* FEEI-3448 CEL widget
*16.0.3* Packaging of ver 16.0.3
*16.0.2* FREEPBX-22064 CEl showing default user data in UCP
*16.0.1alpha* 16.0.1 alpha release
</changelog><category>Reports</category><description>The Call Event Logging module allows you to see all inbound and outbound calls for your user and listen to any call recordings that are associated with that call.</description><more-info>https://wiki.freepbx.org/display/FPG/Call+Event+Logging</more-info><depends><version>14.0.1alpha12</version><module>backup ge 16.0.63</module></depends><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>6be7c0d35dfb7a34aaba56c8c57bf745bd42f2b2</sha1></signed><location>packages/cel/cel-16.0.16.tgz.gpg</location><md5sum>754eb7336a57dad85b9da29647a652dc</md5sum><sha1>00ba500022bc8d8ff1d5b7b2c2733230cf8701e8</sha1><packaged>1684142145</packaged></cel><certman><rawname>certman</rawname><name>Certificate Manager</name><repo>standard</repo><version>16.0.22</version><publisher>Sangoma Technologies Corporation</publisher><license>AGPLv3+</license><licenselink>http://www.gnu.org/licenses/agpl-3.0.txt</licenselink><description>
Certificate Manager for Asterisk. Used for TLS, DTLS connection (think WebRTC and secure traffic)
</description><more-info>https://wiki.freepbx.org/display/FPG/Certificate+Management+Module</more-info><changelog>
*16.0.22* Reverting Bootstrap and dependent libs fixes
*16.0.21* FREEI-4793
*16.0.20* Fixing FREEPBX-23248
*16.0.19* FREEI-4037 Add option to remove DST Root CA X3 from LE certificate bundle
*16.0.18* FREEI-3995 Swaped implode() function parameters
*16.0.17* FREEPBX-22849 Fix for Let'\''s encrypt root CA
*16.0.16* FREEI-3758 Created new GQL API to update certificate to default
*16.0.15* Adding an option to mark uploaded ssl certificate as default
*16.0.14* FREEPBX-22660 Changed array key name cid to certificate while restoring dtls options
*16.0.13* FREEPBX-20610 added logic to write out proper fullchain file
*16.0.12* FREEPBX-21681
*16.0.11* Packaging of ver 16.0.11
*16.0.10* Packaging of ver 16.0.10
*16.0.9* FREEI-2599 New extension created with multiple entries for media_encryption
*16.0.8* FREEPBX-22123 / add config hints when cert request fails
*16.0.7* FREEPBX-22106-format-letsencrypt-output-display-error-messages
*16.0.6* FREEI-2109 added option to do force update
*16.0.5* Forceupdatebranch
*16.0.4* FREEPBX-21683 fwconsole certificate update error silently shuts down firewall module
*16.0.3* FREEPBX-21600 fixing -SRTP selection was Enabling DTLS
*16.0.2* Bugfix/FREEI-1464
*16.0.1alpha* 16.0.1 alpha release
</changelog><category>Admin</category><supported><version>16.0</version></supported><depends><phpversion>5.6.0</phpversion><module>core ge 15.0.9.61</module><version>14.0.3</version></depends><console><command><name>certificates</name><class>Certman</class></command></console><signed><type>gpg</type><sha1>638f8df5b1202a7c08ba0686e74a20ff950eba93</sha1></signed><location>packages/certman/certman-16.0.22.tgz.gpg</location><md5sum>8c7d0e9c36406a517e36da9477fad1d9</md5sum><sha1>ccb625604f5e656d302e9849d07902e25fa99efd</sha1><packaged>1653298676</packaged></certman><cidlookup><rawname>cidlookup</rawname><repo>standard</repo><name>CallerID Lookup</name><version>16.0.15</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>https://www.gnu.org/licenses/gpl-3.0.txt</licenselink><description>Allows CallerID Lookup of incoming calls against different sources (OpenCNAM, MySQL, HTTP, ENUM, Phonebook Module)</description><more-info>https://wiki.freepbx.org/display/F2/CallerID+Lookup+Sources+Module</more-info><category>Admin</category><changelog>
*16.0.15* Packaging of ver 16.0.15
*16.0.14* Packaging of ver 16.0.14
*16.0.13* FREEPBX-23954
*16.0.12* FREEPBX-23578
*16.0.11* Reverting Bootstrap and dependent libs fixes
*16.0.10* FREEI-4793
*16.0.9* FREEPBX-23429
*16.0.8* FREEI-4692
*16.0.7* FREEI-4682
*16.0.6* FREEPBX-23206 CID Lookup module relies on app_mysql
*16.0.5* Packaging of ver 16.0.5
*16.0.4* Packaging of ver 16.0.4
*16.0.3* FREEI-1667 modify cidlookup &amp; adding delAction class
*16.0.2* FREEI-1397 To avoid duplicate entry of cidlookup
*16.0.1alpha* 16.0.1 alpha release
</changelog><depends><engine>asterisk 1.6</engine><module>framework ge 13.0.121</module><module>core ge 13.0.13</module></depends><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>a45e7776e517f668efa5a449dc7e19ae32f88d21</sha1></signed><location>packages/cidlookup/cidlookup-16.0.15.tgz.gpg</location><md5sum>612adafd712ee543ebc98d587867eb7f</md5sum><sha1>344fbe5b05d6452c355aae034118424b81ba2488</sha1><packaged>1679304279</packaged></cidlookup><conferences><rawname>conferences</rawname><repo>standard</repo><name>Conferences</name><version>16.0.9</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><category>Applications</category><description>Allow creation of conference rooms where multiple people can talk together</description><more-info>https://wiki.freepbx.org/display/F2/Conferences+Module</more-info><changelog>
*16.0.9* FREEPBX-24005
*16.0.8* Reverting Bootstrap and dependent libs fixes
*16.0.7* FREEI-4793
*16.0.6* FREEI-3556
*16.0.5* FREEI-3507: delete entries from restapps_rtapi_conferences db table when a conference extension is deleted
*16.0.4* FREEI-3352: if /AMPUSER/ext/accountcode is set to u+userId, set it as the accountcode when a conference room is called
*16.0.3* Packaging of ver 16.0.3
*16.0.2* Packaging of ver 16.0.2
*16.0.1alpha* 16.0.1 alpha release
</changelog><depends><module>recordings ge 13.0.2</module><version>13.0.191.12</version></depends><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>04957e4f23bbd963c71bd1e6b853a73bd9d6b7cf</sha1></signed><location>packages/conferences/conferences-16.0.9.tgz.gpg</location><md5sum>1efc04163a8bd20bc5aaecc77ff73f8d</md5sum><sha1>5180c5a727863c1bb407e25037ec4d162a777e48</sha1><packaged>1676261879</packaged></conferences><configedit><rawname>configedit</rawname><name>Config Edit</name><repo>extended</repo><version>16.0.5</version><publisher>Sangoma Technologies Corporation</publisher><license>AGPLv3+</license><licenselink>http://www.gnu.org/licenses/agpl-3.0.txt</licenselink><description>
Configuration file editor for _custom files
</description><more-info>https://wiki.freepbx.org/display/FPG/Configuration+File+Editor</more-info><changelog>
*16.0.5* Reverting Bootstrap and dependent libs fixes
*16.0.4* Packaging of ver 16.0.4
*16.0.3* FREEI-4793
*16.0.2* Packaging of ver 16.0.2
*16.0.1* Inital 16.0 release
</changelog><category>Admin</category><supported><version>16.0</version></supported><depends><version>16.0</version></depends><signed><type>gpg</type><sha1>426b5c4aff8694fe58fba1d0e0051c6db218a297</sha1></signed><location>packages/configedit/configedit-16.0.5.tgz.gpg</location><md5sum>f49b8dda7e88fd5f96bbee357825a0d1</md5sum><sha1>36e3554ff96d898d1af34f52975a51fe170fd53f</sha1><packaged>1653298003</packaged></configedit><contactmanager><rawname>contactmanager</rawname><repo>standard</repo><name>Contact Manager</name><version>16.0.23</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><changelog>
*16.0.23* FREEI-154 Fixed issue with leading zero not being included for speed dial
*16.0.22* FREEI-5803
*16.0.21* FREEPBX-22652
*16.0.20* FREEPBX-22652
*16.0.19* FREEI-5625
*16.0.18.19* FREEI-5515
*16.0.18.18* FREEI-5019
*16.0.18.17* FREEPBX-23875
*16.0.18.16* FREEI-1261
*16.0.18.15* Packaging of ver 16.0.18.15
*16.0.18.14* Packaging of ver 16.0.18.14
*16.0.18.13* Packaging of ver 16.0.18.13
*16.0.18.12* Fixing FREEPBX-23533-not display the User Manager Group records
*16.0.18.11* Reverting Bootstrap and dependent libs fixes
*16.0.18.10* Packaging of ver 16.0.18.10
*16.0.18.9* Packaging of ver 16.0.18.9
*16.0.18.8* FREEI-4805
*16.0.18.7* FREEI-4793
*16.0.18.6* FREEI-4657
*16.0.18.5* Packaging of ver 16.0.18.5
*16.0.18.4* FREEI-616 Contact manager does not ask for confirmation before deleting
*16.0.18.3* SCD-227
*16.0.18.2* SCD-227
*16.0.18.1* FREEPBX-23229 and FREEI-4572
*16.0.18* bump
*16.0.17.13* Packaging of ver 16.0.17.13
*16.0.17.12* Packaging of ver 16.0.17.12
*16.0.17.11* SCD-186 and SCD-187
*16.0.17.10* SCD-104 Add favorite contacts
*16.0.17.9* FREEI-4498 fixed the issue of unable to remove a selected contact from contact manager
*16.0.17.8* Packaging of ver 16.0.17.8
*16.0.17.7* FREEPBX-23205
*16.0.17.6* FREEPBX-23208
*16.0.17.5* FREEPBX-23203: Trying to access array offset on value of type bool
*16.0.17.4* FREEI-4342 Moved update contact hook function inside foreach loop because the scope of the group variable is inside loop
*16.0.17.3* SCD-119 Recent changes for updating contacts is crashing the mysql with "Too many mysql connections" error in larger system while updating the userman group.
*16.0.17.2* SCD-120
*16.0.17.1* SCD-116 corrected server_uuid value in scd contact file
*16.0.17* SCD-97 modified code to regenerate SCD contact file upon contact update
*16.0.16* SCD-101
*16.0.15*
*16.0.14* SCD-74 removed all other protocol configurations from contact file url except for https
*16.0.13* SCD-31 change fetching internal IP, show display name as first name if both first and last name are empty
*16.0.12* SCD-31 changed the contents of the contact file generated
*16.0.11* SCD-20 added validation for case in which key 'PRIVATE_CONTACTS_UPDATED' is not set
*16.0.10* SCD-3 added method to generate user contact file and return the access URL
*16.0.9* FREEI-3834 Fixed restoring issue by bypassing cache datails in getGroups function and also fixed error while deleting multiple contacts - 'Trying to access array offset on value of type boolean'
*16.0.8* FREEI-3745 Can we remove the 'template creator' user from contacts
*16.0.7* bugfix/FREEPBX-22581-restore-fails-when-no-values-in-contact-manager
*16.0.6* FREEI-3238 Contact manager not restoring internal contacts
*16.0.5* Packaging of ver 16.0.5
*16.0.4* FREEI-2676-bulk-delete-feature-contactmanager
*16.0.3* FREEPBX-21227 Remove Contact Mgr Speeddial as destination
*16.0.2* Packaging of ver 16.0.2
*16.0.1alpha* 16.0.1 alpha release
</changelog><category>Admin</category><description>
The Contact Manager module lets you add contacts to groups.
</description><more-info>https://wiki.freepbx.org/display/F2/Contact+Manager+Module</more-info><depends><version>15.0.6.18</version><module>userman ge 13.0.70</module></depends><supported><version>16.0</version></supported><console><command><name>contactmanager</name></command></console><signed><type>gpg</type><sha1>017c70cbd74a2983180a62e44601afc423afcc0e</sha1></signed><location>packages/contactmanager/contactmanager-16.0.23.tgz.gpg</location><md5sum>c8b78bd3f9921f51a6476178df9420a0</md5sum><sha1>51204209d6db6864faa76d89a5f342d79c03d5a2</sha1><packaged>1686550902</packaged></contactmanager><core><rawname>core</rawname><repo>standard</repo><category>Applications</category><name>Core</name><version>16.0.68.20</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><candisable>no</candisable><canuninstall>no</canuninstall><changelog>
*16.0.68.20* FREEPBX-24284
*16.0.68.19* FREEI-176
*16.0.68.18* FREEPBX-24135
*16.0.68.17* FREEPBX-24135
*16.0.68.16* Packaging of ver 16.0.68.16
*16.0.68.15* FREEI-5863
*16.0.68.14* Packaging of ver 16.0.68.14
*16.0.68.13* Packaging of ver 16.0.68.13
*16.0.68.12* FREEPBX-24135 and FREEPBX-24141
*16.0.68.11* Packaging of ver 16.0.68.11
*16.0.68.10* Packaging of ver 16.0.68.10
*16.0.68.9* FREEI-5679
*16.0.68.8* FREEPBX-23201 , FREEI-5569
*16.0.68.7* Packaging of ver 16.0.68.7
*16.0.68.6* FREEPBX-23957 and FREEI-5573
*16.0.68.5* FREEPBX-21360 Add Accontcode to Virtual Extensions
*16.0.68.4* FREEPBX-23976
*16.0.68.3* FREEPBX-23698
*16.0.68.2* Packaging of ver 16.0.68.2
*16.0.68.1* FREEI-5490
*16.0.68* Packaging of ver 16.0.68
*16.0.67* FREEPBX-23698
*16.0.66.3* FREEPBX-23582
*16.0.66.2* FREEPBX-23847
*16.0.66.1* FREEI-5396 Fix undefined index errors
*16.0.66* FREEPBX-23784 Add support for trunk import/export to Bulk Export for PJSIP Trunks
*16.0.65.22* FREEPBX-23781, FREEPBX-23802 and SCD-328
*16.0.65.21* FREEPBX-21821
*16.0.65.20* Packaging of ver 16.0.65.20
*16.0.65.19* Packaging of ver 16.0.65.19
*16.0.65.18* FREEI-5236
*16.0.65.17* FREEI-5236
*16.0.65.16* FREEPBX-23697 outcid allowed chars increase
*16.0.65.15* Packaging of ver 16.0.65.15
*16.0.65.14* Packaging of ver 16.0.65.14
*16.0.65.13* Packaging of ver 16.0.65.13
*16.0.65.12* Packaging of ver 16.0.65.12
*16.0.65.11* FREEI-4697, FREEPBX-23675 and FREEPBX-23656
*16.0.65.10* Packaging of ver 16.0.65.10
*16.0.65.9* Packaging of ver 16.0.65.9
*16.0.65.8* Packaging of ver 16.0.65.8
*16.0.65.7* Packaging of ver 16.0.65.7
*16.0.65.6* FREEPBX-23646 Add 988 to the routing pattern generator
*16.0.65.5* Packaging of ver 16.0.65.5
*16.0.65.4* Packaging of ver 16.0.65.4
*16.0.65.3* FREEI-4787 Trunk Call Recording Not Working After Parking Call
*16.0.65.2* FREEI-4830 skip restoring trunks and routes
*16.0.65.1* FREEPBX-16216 Tooltip changed for remove existing option
*16.0.65* FREEI-3988, FREEI-4787 and FREEPBX-16216
*16.0.64* Reverting the bootstrap and dependent libs commits
*16.0.63.8* Packaging of ver 16.0.63.8
*16.0.63.7* Packaging of ver 16.0.63.7
*16.0.63.6* FREEI-4793
*16.0.63.5* FREEI-4789
*16.0.63.4* Packaging of ver 16.0.63.4
*16.0.63.3* FREEPBX-23329
*16.0.63.2* FREEI-4698 Inbound GQL api issue fix
*16.0.63.1* FREEPBX-23417
*16.0.63* FREEI-4350 Added backend validation for validating file format
*16.0.62* FREEPBX-23376
*16.0.61* FREEPBX-23376 , FREEI-4650 , FREEI-4267 and FREEI-4639
*16.0.60* Packaging of ver 16.0.60
*16.0.59* FREEI-4459 CID when routing Inbound Route to Misc Destination using trunk CID
*16.0.58* FREEI-4577 and FREEI-4459
*16.0.57* bump
*16.0.56.37* FREEPBX-23226 Expand pjsip match setting to support 8192 bytes
*16.0.56.36* FREEPBX-23249 Deleting an extension doesn't mark database as needing reload
*16.0.56.35* FREEI-4267
*16.0.56.34* Bugfix/FREEPBX-23256 graphql api did does not include destination information
*16.0.56.33* FREEI-4499 Added condition to check settings fields are exists or not
*16.0.56.32* FREEPBX-23267 Add controls for asterisk http server TLS version
*16.0.56.31* FREEI-4491 added condition to accept boolean value of string type
*16.0.56.30* FREEI-4490 Added condition to check whether the setting is already updated
*16.0.56.29* update macroDialone.php to fix FREEPBX-22038
*16.0.56.28* FREEI-4269 Modified condition for the fields 'emergency_cid' and 'outboundcid' to accept the empty value same as GUI
*16.0.56.27* FREEI-4033 Created new GQL Api to update, fetch advance settings with unit tests
*16.0.56.26* FREEI-4100 Updated default settings with actual input values
*16.0.56.25* FREEI-4153 fixed the issue in outbound routes when a non-used trunk is deleted
*16.0.56.24* FREEI-4100 Refactored all core device gql api's with new unit tests and replaced unexistent field with correct value
*16.0.56.23* FREEI-4126
*16.0.56.22* FREEPBX-22892 D&amp;U ringgroup callerid issue
*16.0.56.21* FREEPBX-23025 Revert DID change check
*16.0.56.20* FREEI-4126 and FREEI-4127 GQL API fixes
*16.0.56.19* FREEI-4101 Changed 'rvolume', 'pmmaxretries' and 'pmminlength' field type to string because it is causing internal error for already existing data which has empty string and added default value for 'rvolume' field
*16.0.56.18* FREEI-4058 Added condition to limit max contacts value to 100 while adding new device
*16.0.56.17* FREEI-4101 Added default values for pmmaxretries and pmminlength fields
*16.0.56.16* FREEI-4058 Added condition to limit max contacts value to 100
*16.0.56.15* FREEI-4018 added condition to throw error whern trying to add extensions beyond the system extension license limit
*16.0.56.14* FREEPBX-22676 Function CALLERPRES not registered
*16.0.56.13* FREEPBX-22676 Function CALLERPRES not registered
*16.0.56.12* Fixing the bulkhandler validation issue
*16.0.56.11* process MaxContacts if provided, and keep existing value if not set.
*16.0.56.10* FREEPBX-22796 changed query field type of 'id' from type int to type id
*16.0.56.9* FREEPBX-22794 and FREEPBX-22800
*16.0.56.8* FREEPBX-22723/setMaxContactsOnQuickCreate
*16.0.56.7* FREEPBX-22785/UnitTestFixes
*16.0.56.6* FREEI-3869
*16.0.56.5* FREEI-3532 Web callback caller ID number
*16.0.56.4* FREEPBX-22628 bulk handler noanswer/busy/chanunvail_cid is being ignored
*16.0.56.3* FREEPBX-22625 bulk extension cwtone is ignored
*16.0.56.2* FREEI-3477 backup restore
*16.0.56.1* bump
*16.0.56* Fixing FREEI-2691 GQL API for createExtention and updateExtension issue
*16.0.55* FREEI-2691 Updated fetchExtension and fetchAllExtensions by including sip secret and user manager password
*16.0.54* FREE-2691 removing umpassword for range creation and renaming secret to extPassword
*16.0.53* FREEI-2691 adding password and secret in gql core
*16.0.52* Packaging of ver 16.0.52
*16.0.51* FREEPBX-22483 confirm-call-bug-ringroup-with-confirm-call-to-extension-with-follow-me-call-is-no-longer-available
*16.0.50* FREEI-2625 bugfix for callerId not updating and not able to fetch
*16.0.49* FREEI-3110 Remove 'this is a non standard port' text in gui
*16.0.48* FREEPBX-22406 Outbound CID name is stripped following core upgrade
*16.0.47* FREEPBX-22361 Asterisk 18 integration still incomplete
*16.0.46* FREEI-3073 Error - Pjsip Keep alive Interval button not working (Sipsetting)
*16.0.45* FREEI-1065 When Video Support is Enabled, PJSIP trunks should be able to select them
*16.0.44* Added hidding of trunks on core destinations when routedisplay is off
*16.0.43* FREEI-3039
*16.0.42* Packaging of ver 16.0.42
*16.0.41* FREEPBX-22337 Restore fails on trunks
*16.0.40* FREEI-2762 974250 - PJSIP - Set Auth User Name
*16.0.39* FREEPBX-22331 Backup and Restore Module does not restore trunks and outbound routes
*16.0.38* FREEI-2762 Ticket#974250 - PJSIP - Set Auth User Name
*16.0.37* Add ability to hide trunks in routes ui
*16.0.36* FREEI-2848 core with outbound CID
*16.0.35* FREEI-2828 GraphQL server error on query allInboundRoutes
*16.0.34* FREEI-2738 PBX does not forward the original callerID to a misc destination
*16.0.33* Fixes FREEPBX-20269
*16.0.32* FREEI-2765 array_product() expects parameter 1 to be array, object given
*16.0.31* FREEPBX-22130 SIP to PJSIP conversion tool needs a couple of bugs fixed
*16.0.30* FREEI-2629 updated issue fixed
*16.0.29* FREEPBX-22068 UCP Allowing access to extensions edit allow create new extensions
*16.0.28* FREEPBX-21971 Deleting an Outbound Route does not delete related database records
*16.0.27* FREEPBX-21970 taskprocessor_overload_trigger=pjsip_only in pjsip.conf
*16.0.26* FREEPBX-21996 Undefined variable: extension
*16.0.25* Api device query return an unwanted ID , And it suppose to take the input var Device_Id
*16.0.24* FREEPBX-21952 Update comment note for from-pstn-custom
*16.0.23* FREEPBX-21978 Undefined index "callwaiting"
*16.0.22* typo error
*16.0.21* FREEI-2276 extension APIs
*16.0.20* Fixing FREEI-2137 displaying only pjsip extensions during basic mode
*16.0.19* FREEI-2157 warm spare backup exclude trunks should exclude outbound route
*16.0.18* FREEI-1977 Importing Extensions causes calls to no longer ring on Zulu
*16.0.17* FREEI-2013 Not all extension data imported and applied on a 15 restore
*16.0.16* Fixing FREEI-2095 Adding API call to Commercial Endpoint Manager(if
*16.0.15* FREEPBX-21736 Fixing - Backup&amp;Restore : all astdb variables are not getting restored
*16.0.14* FREEI-2058 COS not working after restoring the legacy backup on Freepbx 15
*16.0.13* FREEI-1964 making PJSIP extension's rewrite_contact 'yes'
*16.0.12* FREEPBX-21732 Execute notification email before dial on pattern match
*16.0.11* FREEPBX-21603 Unable to dial LOCAL/XX from TAPI since FreePBX 15
*16.0.10* Resolve FREEPBX-21582 conflict
*16.0.9* FREEPBX-21582 Custom device caller ID broken
*16.0.8* FREEPBX-21582 Custom device caller ID broken
*16.0.7* FREEI-1481 Outbound Routes - move paging Notifications setting to the new tab
*16.0.6* Fixing FREEI-1617 Keeping auto reload only for commercial deployments
*16.0.5* FREEI-1468 if default_user is coming blank, it should be equal to user
*16.0.4* Fixe back slash
*16.0.3* FREEI-21449 : taking line parameter with endpoint field.
*16.0.2* FREEI-1180 Fixes issue with contact_user not being added to PJSIP trunk endpoints.
*16.0.1alpha1* Inital Release
</changelog><depends><version>16.0.40.1</version><module>framework ge 16.0.40.1</module><module>backup ge 16.0.63</module></depends><methods><get_config>core_do_get_config</get_config></methods><console><command><command><name>convert2pjsip</name></command><command><name>trunks</name></command></command></console><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>0be40e6a6afc10d7771ca9a3f68bba8c169d1238</sha1></signed><location>packages/core/core-16.0.68.20.tgz.gpg</location><md5sum>4f6bea381f1ab43067c23a8e7ee347fd</md5sum><sha1>5a9027900271e75b0110106c71dc0897a84c576e</sha1><packaged>1689000548</packaged></core><customappsreg><rawname>customappsreg</rawname><repo>standard</repo><name>Custom Applications</name><version>16.0.5</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>https://www.gnu.org/licenses/gpl-3.0.txt</licenselink><category>Admin</category><description>
Registry to add custom extensions and destinations that may be created and used so that the Extensions and Destinations Registry can include these.
</description><more-info>https://wiki.freepbx.org/display/FPG/Custom+Extensions+Module</more-info><changelog>
*16.0.5* Reverting Bootstrap and dependent libs fixes
*16.0.4* FREEI-4793
*16.0.3* Packaging of ver 16.0.3
*16.0.2* Packaging of ver 16.0.2
*16.0.1alpha* 16.0.1 alpha release
</changelog><depends><version>12.0.54</version></depends><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>e922f3837e850cb2ab5942694daf8715299d4f13</sha1></signed><location>packages/customappsreg/customappsreg-16.0.5.tgz.gpg</location><md5sum>2a0bfb07dc910d732706c4f4aad83e1b</md5sum><sha1>024acecebe9c9b6de3e63ec36e3dcc276a357ac2</sha1><packaged>1653297901</packaged></customappsreg><customcontexts><rawname>customcontexts</rawname><repo>unsupported</repo><name>Custom Contexts</name><version>13.0.3.2</version><category>Connectivity</category><license>GPLv2+</license><licenselink>http://www.gnu.org/licenses/gpl-2.0.txt</licenselink><description>
Creates custom contexts which can be used to allow limited access to dialplan applications. Allows for time restrictions on any dialplan access. Allows for pattern matching to allow/deny. Allows for failover destinations, and PIN protected failover. This can be very useful for multi-tennant systems. Inbound routing can be done using DID or zap channel routing, this module allows for selective outbound routing. House/public phones can be placed in a restricted context allowing them only internal calls.
</description><depends><version>13.0</version><module>core</module><module>timeconditions</module></depends><changelog>
*13.0.3.2* Fix FREEPBX-21593
*13.0.3.1* FREEPBX-17779
*13.0.3* FREEPBX-14687 move custom contexts into Advanced Tab and hide old context
*13.0.2* FREEPBX-10723 Array validation
*13.0.1* FREEPBX-10448 html updates, FREEPBX-10723 array validation
*2.11.0.2* Clarify GPLv2 Licence.
*2.11.0.1* Fix module.xml
*2.11.0.0* bump version
*2.10.0.1* #5478
*2.10.0.0* new version changes
*2.9.0.0* #4986, 2.9 bump
</changelog><attention>
This is an advanced module, and you should not use it without understanding asterisk dialplans! This is meant as a convenience tool for someone who would have had to resort to config editing. If you experience problems with it, just disable it and no harm done. REMEMBER! Any device placed in a restricted context will have no access to the dialplan if this module is disabled until it is placed in a normal context!
</attention><supported><version>13.0</version></supported><signed><type>gpg</type><sha1>e51702908924645ec7cb58d1054b5d18fe16c4a0</sha1></signed><location>packages/customcontexts/customcontexts-13.0.3.2.tgz.gpg</location><md5sum>2cd38275886a1bd099f811ede10b7f5f</md5sum><sha1>c9bcb611a2742f8d666369e7401836e520e18b8d</sha1><packaged>1592972255</packaged><publisher></publisher></customcontexts><cxpanel><rawname>cxpanel</rawname><name>iSymphonyV3</name><version>16.0.6</version><type>setup</type><category>Admin</category><description>
This module automatically configures the operator panel to reflect the PBX configuration.
</description><depends><module>manager</module><module>userman</module><module>framework ge 14.0.2.16</module><version>13.0.121</version></depends><changelog>
*16.0.6* FEEPBX-24136
*16.0.5* FREEPBX-24132
*16.0.4* FREEPBX-23794
*16.0.2* Packaging of ver 16.0.2
*16.0.1alpha* 16.0.1 alpha release
</changelog><info>http://www.getisymphony.com</info><publisher>i9 Technologies</publisher><license>GPLv3</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><supported><version>16.0</version></supported><repo>standard</repo><signed><type>gpg</type><sha1>597310105f8f19448389663d6fb02bd1f1e1524f</sha1></signed><location>packages/cxpanel/cxpanel-16.0.6.tgz.gpg</location><md5sum>ee8346fbaa658da4cef5564d3e3dcd0b</md5sum><sha1>9de3a6f1576009b9f769094537452a2be8665411</sha1><packaged>1690974406</packaged></cxpanel><dahdiconfig><rawname>dahdiconfig</rawname><repo>extended</repo><category>Connectivity</category><name>DAHDi Config</name><version>16.0.9</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>https://www.gnu.org/licenses/gpl-3.0.txt</licenselink><candisable>yes</candisable><canuninstall>yes</canuninstall><description>The DAHDI module is designed to let you manage and configure your PSTN cards.</description><more-info>https://wiki.freepbx.org/display/F2/DAHDI+Configs</more-info><changelog>
*16.0.9* FREEI-51 dahdi configs backup restore of tables
*16.0.8* Reverting Bootstrap and dependent libs fixes
*16.0.7* Packaging of ver 16.0.7
*16.0.6* FREEI-4793
*16.0.5* Fixing FREEI-1521 Increasing timeout for wanrouter start process
*16.0.4* Packaging of ver 16.0.4
*16.0.3* fixing FREEPBX-21885 Adding check to avoid whoops error
*16.0.2* Packaging of ver 16.0.2
*16.0.1alpha* 16.0.1 alpha release
</changelog><supported><version>16.0</version></supported><depends><version>14.0.1alpha30</version></depends><signed><type>gpg</type><sha1>7d31dc09ce2b45e41a255a02394a2c2ea453a8db</sha1></signed><location>packages/dahdiconfig/dahdiconfig-16.0.9.tgz.gpg</location><md5sum>282f2c48b68ff1534c8ea9640ebb990e</md5sum><sha1>c748a2f4c48714b67aa5a3637d77922ff8d9ba45</sha1><packaged>1684480982</packaged></dahdiconfig><dashboard><rawname>dashboard</rawname><repo>standard</repo><name>System Dashboard</name><version>16.0.18</version><publisher>Sangoma Technologies Corporation</publisher><license>AGPLv3+</license><licenselink>http://www.gnu.org/licenses/agpl-3.0.txt</licenselink><candisable>no</candisable><canuninstall>no</canuninstall><category>Dashboard</category><description>
Provides a system information dashboard, showing information about Calls, CPU, Memory, Disks, Network, and processes.
</description><more-info>https://wiki.freepbx.org/display/FPG/FreePBX+System+Status</more-info><depends><version>14.0.5.26</version></depends><changelog>
*16.0.18* Packaging of ver 16.0.18
*16.0.17* Packaging of ver 16.0.17
*16.0.16* FREEPBX-24081
*16.0.15* FREEPBX-23909
*16.0.14* FREEI-4464 Adding dashboard widget for storage
*16.0.13* Reverting Bootstrap and dependent libs fixes
*16.0.12* FREEI-4793
*16.0.11* Packaging of ver 16.0.11
*16.0.10* GraphQL API to check disk free
*16.0.9* Modification related FREEI-4360-GraphQL API to check disk free
*16.0.8* FREEPBX-22214 modified code to consider 'NonQual' as online for trunks
*16.0.7* Packaging of ver 16.0.7
*16.0.6* FREEPBX-22195 incorrect speed display should be kB/s
*16.0.5* FREEPBX-22122 change teh value by default, and the tooltips in advanced settings
*16.0.4* FREEPBX-22122 Recent move of Intrusion Detection, causes false failure on dashboard
*16.0.3* Develop add notes
*16.0.2* Packaging of ver 16.0.2
*16.0.1alpha* 16.0.1 alpha release
</changelog><supported><version>16.0</version></supported><location>packages/dashboard/dashboard-16.0.18.tgz.gpg</location><md5sum>273c6ec1128ac4105a82179a3aa98279</md5sum><signed><type>gpg</type><sha1>55d305b397e7068dea2d170b80d6899df4c93a1e</sha1></signed><sha1>32cc93bc70976680c3f2dfb69e7e3e17a1ad7498</sha1><packaged>1691569256</packaged></dashboard><daynight><rawname>daynight</rawname><repo>standard</repo><name>Call Flow Control</name><version>16.0.3</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>https://www.gnu.org/licenses/gpl-3.0.txt</licenselink><category>Applications</category><description>
Call Flow manual toggle control - allows for two destinations to be chosen and provides a feature code that toggles between the two destinations.
</description><more-info>https://wiki.freepbx.org/display/FPG/Call+Flow+Control+Module</more-info><changelog>
*16.0.3* Reverting Bootstrap and dependent libs fixes
*16.0.2* FREEI-4793
*16.0.1* 16.0
</changelog><depends><version>16.0</version></depends><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>ba8f9906571b1d2c17708d648b5a8504575e4cb6</sha1></signed><location>packages/daynight/daynight-16.0.3.tgz.gpg</location><md5sum>a7c8de91b5c1e318c48b5f77e7e17c39</md5sum><sha1>8bcddb77cb922e69fc4eba176eb130b428071155</sha1><packaged>1653291728</packaged></daynight><dictate><rawname>dictate</rawname><repo>extended</repo><name>Dictation</name><version>16.0.1</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>https://www.gnu.org/licenses/gpl-3.0.txt</licenselink><category>Applications</category><changelog>
*16.0.1* 16.0 release
</changelog><description>This uses the app_dictate module of Asterisk to let users record dictate into their phones. When complete, the dictations can be emailed to an email address specified in the extension page.</description><more-info>https://wiki.freepbx.org/display/FPG/Extensions+Module+-+Other+%28Custom%29+Extension#ExtensionsModule-Other(Custom)Extension-DictationServices</more-info><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>8d33f8a9a29c44123290801d436a9ed9e8019ffb</sha1></signed><location>packages/dictate/dictate-16.0.1.tgz.gpg</location><md5sum>66313fd187f53d7e576dfdb7a5b03585</md5sum><sha1>e52a3f882f6ddeac5725da2350cab496e44836ef</sha1><packaged>1615896847</packaged></dictate><directory><rawname>directory</rawname><repo>standard</repo><name>Directory</name><version>16.0.2</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>https://www.gnu.org/licenses/gpl-3.0.txt</licenselink><type>setup</type><category>Applications</category><depends><version>13.0.42</version><version>16.0</version><module>recordings ge 3.3.8</module></depends><description>The directory module allows you to create directories of users that can be accessed by callers through modules like the IVR.</description><more-info>https://wiki.freepbx.org/display/FPG/Directory+Module</more-info><changelog>
*16.0.2* FREEPBX-23963
*16.0.1* 16.0 release
</changelog><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>8d23a09659603c4263647a7c9e608b4a6ea4b0eb</sha1></signed><location>packages/directory/directory-16.0.2.tgz.gpg</location><md5sum>066ceab78fd9bca4cfab3d48df1efb1f</md5sum><sha1>3963dcc710b46e6adccf3a59be83b1802359840b</sha1><packaged>1675329393</packaged></directory><disa><rawname>disa</rawname><repo>extended</repo><name>DISA</name><version>16.0.4</version><publisher>Sangoma Technologies Corporation</publisher><license>AGPLv3+</license><licenselink>https://www.gnu.org/licenses/agpl-3.0.txt</licenselink><category>Applications</category><description>DISA Allows you 'Direct Inward System Access'. This gives you the ability to have an option on an IVR that gives you a dial tone, and you're able to dial out from the FreePBX machine as if you were connected to a standard extension. It appears as a Destination.</description><more-info>https://wiki.freepbx.org/display/FPG/DISA+Module</more-info><changelog>
*16.0.4* Reverting Bootstrap and dependent libs fixes
*16.0.3* Reverting Bootstrap and dependent libs fixes
*16.0.2* FREEI-4793
*16.0.1* 16.0 release
</changelog><depends><version>callrecording ge 12.0.1</version><version>13.0.5</version></depends><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>8acb66b344d8f10a806ae71b24a9051ab7dc5310</sha1></signed><location>packages/disa/disa-16.0.4.tgz.gpg</location><md5sum>e320ebec57e45434c8914be247db00be</md5sum><sha1>57be3925875398df51a3a80323d731581f2a25c0</sha1><packaged>1653289592</packaged></disa><donotdisturb><rawname>donotdisturb</rawname><repo>standard</repo><name>Do-Not-Disturb (DND)</name><version>16.0.3</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><changelog>
*16.0.3* FREEI-3608 whoops error on rebuild
*16.0.2* FREEI-3569 getWidgetListByModule method Dontdisturb module
*16.0.1* 16.0 release
</changelog><description>Do not disturb (DND) allows calls to be rejected at the user's request via a feature code, UCP setting, or REST App.</description><more-info>https://wiki.freepbx.org/display/FPG/Do+Not+Disturb+Module</more-info><category>Applications</category><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>77a8f9a775852a3a6efcf69c78d7af676e85aef4</sha1></signed><location>packages/donotdisturb/donotdisturb-16.0.3.tgz.gpg</location><md5sum>50dbd85b97d366d4c983501882b54467</md5sum><sha1>c523040c684605d938b1f1733d6ce3a9f18315b7</sha1><packaged>1627283399</packaged></donotdisturb><dynroute><rawname>dynroute</rawname><repo>unsupported</repo><name>Dynamic Routes</name><version>16.0.4</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><category>Applications</category><description>
Routes calls based on dynamically calculated information that can be taken from a mysql database or via odbc with any supported database, from asterisk variables, from a url or an agi script.
Parameters to the lookups can combine dtmf input, asterisk variables, or values saved from previously executed dynamic routes on the same call.
</description><changelog>
*16.0.4* FREEPBX-23819
*16.0.3* FREEPBX-23819
*16.0.2* FREEPBX-22165
*16.0.1* Dynamic Route release
</changelog><depends><module>recordings</module></depends><supported><version>16.0</version></supported><location>packages/dynroute/dynroute-16.0.4.tgz.gpg</location><md5sum>efb2fd6576d6fb7f1c634dab96bd88f7</md5sum><signed><type>gpg</type><sha1>67f16f4c4399b8a089ce3a4986ded32cdd502874</sha1></signed><sha1>2ed93440b52e1535155d583fdb10bd01b4d43b4b</sha1><packaged>1669627661</packaged></dynroute><extensionsettings><rawname>extensionsettings</rawname><repo>unsupported</repo><name>Extension Settings</name><version>16.0.5</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><category>Settings</category><description>Creates a list of all extensions and their current settings for CW, CF, CFB, CFU, VMXB and VMXU</description><changelog>
*16.0.5* FREEPBX-24154
*16.0.4* Packaging of ver 16.0.4
*16.0.3* Packaging of ver 16.0.3
*16.0.2* FREEPBX-24154
*16.0.1* 16.0
</changelog><md5sum>b80ad7f6a7629588a271bc25452ed72b</md5sum><location>packages/extensionsettings/extensionsettings-16.0.5.tgz.gpg</location><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>9b96bb0fbb11653b50ed2a9cb27110ed2021c92a</sha1></signed><sha1>f5b50f3c9d6dd9602393ae5f724cec6fe9cae806</sha1><packaged>1688369369</packaged></extensionsettings><fax><rawname>fax</rawname><repo>standard</repo><name>Fax Configuration</name><version>16.0.13</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>https://www.gnu.org/licenses/gpl-3.0.txt</licenselink><category>Settings</category><description>Adds configurations, options and GUI for inbound faxing</description><more-info>https://wiki.freepbx.org/display/F2/Fax+Configuration</more-info><changelog>
*16.0.13* Packaging of ver 16.0.13
*16.0.12* FREEPBX-24043
*16.0.11* FREEPBX-24029
*16.0.10* FREEI-5396 Fix undefined index errors
*16.0.9* FREEI-5320
*16.0.8* FREEPBX-23718
*16.0.7* Reverting Bootstrap and dependent libs fixes
*16.0.6* FREEI-4793
*16.0.5* FREEI-4793
*16.0.4* FREEPBX-22932 Update tool tip for fax detect
*16.0.3* Packaging of ver 16.0.3
*16.0.2* Packaging of ver 16.0.2
*16.0.1alpha* 16.0.1 alpha release
</changelog><depends><version>12.0.1rc16</version><module>userman ge 13.0</module></depends><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>4dd8a5da47f8d74959d509880e7c73b409124ead</sha1></signed><location>packages/fax/fax-16.0.13.tgz.gpg</location><md5sum>b9fe4252b66604132f3b60952198b01d</md5sum><sha1>6a60ae19a935f753a6cb43a18642ef58db6dc461</sha1><packaged>1679294254</packaged></fax><featurecodeadmin><rawname>featurecodeadmin</rawname><repo>standard</repo><name>Feature Code Admin</name><version>16.0.11</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><candisable>no</candisable><canuninstall>no</canuninstall><category>Admin</category><description>The Feature Codes Module is used to enable and disable certain features available in your PBX and Asterisk, and to set the codes that local users will dial on their phones to use that particular feature.</description><more-info>https://wiki.freepbx.org/display/FPG/Feature+Codes+Module</more-info><changelog>
*16.0.11* FREEPBX-23698
*16.0.10* FREEPBX-23698
*16.0.9* Packaging of ver 16.0.9
*16.0.8* FREEPBX-23866
*16.0.7* FREEPBX-23849
*16.0.6* FREEPBX-23765
*16.0.5* FREEPBX-23547 PrintExtension no translated description
*16.0.4* Reverting Bootstrap and dependent libs fixes
*16.0.3* FREEI-4793
*16.0.2* FREEI-4087 not listing action tab for vqplus module
*16.0.1* 16.0 release
</changelog><depends><version>16.0</version><module>core ge 16.0.68.3</module></depends><supported><version>16.0</version></supported><md5sum>ff277219b8f3ed8192f36995ee3e4928</md5sum><location>packages/featurecodeadmin/featurecodeadmin-16.0.11.tgz.gpg</location><signed><type>gpg</type><sha1>02cb09bdcda87e6837c5d9d4e88528c9348cc0d3</sha1></signed><sha1>917db77ba4956e5f5053141d1f917b713a3df967</sha1><packaged>1673259859</packaged></featurecodeadmin><filestore><rawname>filestore</rawname><name>Filestore</name><repo>standard</repo><version>16.0.16</version><publisher>Sangoma Technologies</publisher><license>AGPLv3</license><licenselink>http://www.gnu.org/licenses/agpl-3.0.txt</licenselink><changelog>
*16.0.16* Packaging of ver 16.0.16
*16.0.15* FREEI-4949
*16.0.14* FREEPBX-23808
*16.0.13* FREEPBX-23751
*16.0.12* FREEPBX-23705
*16.0.11* Fixing FREEPBX-23609
*16.0.10.14* Packaging of ver 16.0.10.14
*16.0.10.13* FREEPBX-23559 removing white spaces at ends for input fields
*16.0.10.12* FREEPBX-23252
*16.0.10.11* Bugfix/FREEPBX-23252 restore does not display ftp backups created with a subdirectory
*16.0.10.10* Reverting Bootstrap and dependent libs fixes
*16.0.10.9* FREEI-4793
*16.0.10.8* FREEPBX-23323 S3 Region Updates
*16.0.10.7* Packaging of ver 16.0.10.7
*16.0.10.6* FREEPBX-22759
*16.0.10.5* FREEI-3770 GQL API fix - Added condition to throw error if invalid Id is given
*16.0.10.4* FREEPBX-22683 Add the functionality to implement the ssl flag in filestore ftp
*16.0.10.3* Packaging of ver 16.0.10.3
*16.0.10.2* FREEI-3442
*16.0.10.1* Packaging of ver 16.0.10.1
*16.0.10* Packaging of ver 16.0.10
*16.0.9* Packaging of ver 16.0.9
*16.0.8* Packaging of ver 16.0.8
*16.0.7* FREEI-3296
*16.0.6* Packaging of ver 16.0.6
*16.0.5* Packaging of ver 16.0.5
*16.0.4* FREEI-2062 Restore to 15 from a 13/14 backup not restoring POMPS backup settings
*16.0.3* Packaging of ver 16.0.3
*16.0.2* Fixing FREEI-1715 Adding FTP timeout default value
*16.0.1alpha1* Initial release
</changelog><category>Settings</category><description>Filesystem abstraction for your PBX</description><more-info>https://wiki.freepbx.org/display/FPG/Filestore+Module</more-info><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>fb4c74e349c26991543a74193cae73d7fcbf58a7</sha1></signed><location>packages/filestore/filestore-16.0.16.tgz.gpg</location><md5sum>683151bd80dd1a51677e83e1ba8da73f</md5sum><sha1>537dae27d919dd6f1b4eed84f6fad8d5337b41a5</sha1><packaged>1680692907</packaged></filestore><findmefollow><rawname>findmefollow</rawname><repo>standard</repo><name>Follow Me</name><version>16.0.23</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><changelog>
*16.0.23* Packaging of ver 16.0.23
*16.0.22* Packaging of ver 16.0.22
*16.0.21* FREEI-115 trigger event when find me follow me settings is updated
*16.0.20* FREEPBX-24167
*16.0.19* FREEPBX-23912
*16.0.18* FREEPBX-23781
*16.0.17* FREEPBX-23469-FollowMe GQL API invalid route
*16.0.16* Reverting Bootstrap and dependent libs fixes
*16.0.15* FREEI-4793
*16.0.14* FREEPBX-23469
*16.0.13* FREEPBX-23272 GraphQL verify `noAnswerDestination` is valid before updating follow me
*16.0.12* Add missing calendar keys to `addSettingsById`
*16.0.11* Adding Findmefollow GraphQL API
*16.0.10* resolve issue with variable name in the new FindMeFollow ADD rest api integrations
*16.0.9* create missing ties between findmefollow REST api and backend
*16.0.8* FREEPBX-22639 FollowMe-Settings are dropped on Active Directory sync
*16.0.7* FREEI-3760 RestAPI FollowMe Functions missing
*16.0.6* FREEI-3447 add a method getWidgetListByModule to findme follow me
*16.0.5* FREEPBX-22522 Can't enable 'confirm calls' in FMFM
*16.0.4* Bugfix/FREEPBX-22430 editing an extensions shows a php error message
*16.0.3* Packaging of ver 16.0.3
*16.0.2* FREEI-1706 avoiding to update callerid if blind/attended transfer
*16.0.1alpha* 16.0.1 alpha release
</changelog><depends><module>core ge 13.0.113.3</module><module>framework ge 13.0.117</module><module>recordings ge 3.3.8</module><module>userman ge 14.0.3.16</module></depends><category>Applications</category><description>
Much like a ring group, but works on individual extensions. When someone calls the extension, it can be setup to ring for a number of seconds before trying to ring other extensions and/or external numbers, or to ring all at once, or in other various 'hunt' configurations. Most commonly used to ring someone's cell phone if they don't answer their extension.
</description><more-info>https://wiki.freepbx.org/display/F2/Follow+Me+Module</more-info><supported><version>16.0</version></supported><location>packages/findmefollow/findmefollow-16.0.23.tgz.gpg</location><md5sum>c093e2ce2ad7ca81199bd9cec44b86c4</md5sum><signed><type>gpg</type><sha1>fce1a27b95d0781d4de21ec976fb47219ee042c1</sha1></signed><sha1>6408520f0000390d82840487fb5dd4e5ab165121</sha1><packaged>1687405992</packaged></findmefollow><firewall><rawname>firewall</rawname><repo>standard</repo><name>System Firewall</name><version>16.0.57.6</version><publisher>Sangoma Technologies Corporation</publisher><license>AGPLv3+</license><licenselink>https://www.gnu.org/licenses/agpl-3.0.txt</licenselink><category>Connectivity</category><candisable>no</candisable><description>Integrated PBX Firewall. Currently works with RHEL 6 and RHEL 7 compatible distributions. Note: This requires the Sysadmin RPM. Please see wiki for further information.</description><more-info>https://wiki.freepbx.org/display/FPG/Firewall</more-info><changelog>
*16.0.57.6* Packaging of ver 16.0.57.6
*16.0.57.5* FREEPBX-23779 Firewall Module Zone nameing
*16.0.57.4* FREEI-5273
*16.0.57.3* FREEPBX-23571 firewall blacklist deletion issue fixes
*16.0.57.2* FREEI-4870 and FREEI-4869 for GQL API related fixes
*16.0.57.1* FREEI-4703 firewall reduced db connection object lazyloading
*16.0.57* FREEI-4148 Move cron jobs to fwconsole job instead of asterisks crontab
*16.0.56* Packaging of ver 16.0.56
*16.0.55* FREEI-4729
*16.0.54* Packaging of ver 16.0.54
*16.0.53* Reverting Bootstrap and dependent libs fixes
*16.0.48* FREEPBX-22496
*16.0.47* FREEPBX-22496 and FREEI-2809
*16.0.46* FREEI-4501 Set default firewall zone for XMPP
*16.0.45* FREEPBX-15243
*16.0.44* FREEPBX-23286
*16.0.43* bump
*16.0.42.15* Packaging of ver 16.0.42.15
*16.0.42.14* Packaging of ver 16.0.42.14
*16.0.42.13* Packaging of ver 16.0.42.13
*16.0.42.12* FREEI-4218 Need to unban the IP during whitelist
*16.0.42.11* FREEPBX-22928 and FREEPBX-22943
*16.0.42.10* FREEI-3968 and FREEPBX-22933
*16.0.42.9* Packaging of ver 16.0.42.9
*16.0.42.8* FREEI-3968 Fixing firewall inconsistent behaviour
*16.0.42.7* FREEPBX-22654 Don't use null values for restapi ports
*16.0.42.6* FREEPBX-22769 Fail2ban Intrusion Detection Sync Firewall banned trustedIP's
*16.0.42.5* Packaging of ver 16.0.42.5
*16.0.42.4* FREEPBX-22653, FREEPBX-22666 and FREEPBX-22674
*16.0.42.3* Packaging of ver 16.0.42.3
*16.0.42.2* FREEI-3677 Removing unused argument from get_registered API
*16.0.42.1* FREEPBX-22654 Don'\''t use disabled as port for restapi
*16.0.42* FREEPBX-22550 NTP/Chrony doesn't respond until configured in firewall
*16.0.41* Packaging of ver 16.0.41
*16.0.40* Packaging of ver 16.0.40
*16.0.39* Packaging of ver 16.0.39
*16.0.38* FREEI-3244 adding is set on array elements
*16.0.37* Packaging of ver 16.0.37
*16.0.36* Fixing FREEI-3517 Chan_sip options displayed in firewall even when chan_sip is disabled
*16.0.35* Packaging of ver 16.0.35
*16.0.34* Packaging of ver 16.0.34
*16.0.33* Packaging of ver 16.0.33
*16.0.32* Packaging of ver 16.0.32
*16.0.31* FREEPBX-21095
*16.0.30* FREEPBX-22196 RFW Threshold settings UI fixes
*16.0.29* Packaging of ver 16.0.29
*16.0.28* FREEI-3160
*16.0.27* FREEI-3242 allowing only internal,external,trusted,other for zone
*16.0.26* FREEI-3244
*16.0.25* Packaging of ver 16.0.25
*16.0.24* FREEI-3232 adding support for nested muations instead of string of objects
*16.0.23* FREEPBX-22453 - Allow user to bypass Fail2Ban when RFW is enabled
*16.0.22* FREEPBX-22371
*16.0.21* FREEI-3145 adding GQL api for whitelisting IP along with utest
*16.0.20* Fixing FREEI-3202
*16.0.19* Packaging of ver 16.0.19
*16.0.18* Packaging of ver 16.0.18
*16.0.17* FREEI-2745 Update tool tip for intrusion detection whitelist
*16.0.16* FREEI-2675 bug resolved for firewall services class
*16.0.15* FREEI-2675 firewall gql api's and utest
*16.0.14* FREEPBX-22131 - remove logs secction
*16.0.13* Jerrmlerules
*16.0.12* Packaging of ver 16.0.12
*16.0.11* FREEPBX-21627: reload firewall rules after enable or disable custom rules.
*16.0.10* FREEPBX-21625: Add button for clean log.
*16.0.9* FREEI-1848 Define a good location for tmp and log file for the Firewall module
*16.0.8* FREEI-1659 Changing firewall wizard imaging
*16.0.7* FREEPBX-21613 Clicking on save rules button in Firewall - Advanced custom rules page without making any changes gives response in some spanish language.
*16.0.6* FREEPBX-21612 - Fix: The log list does not show data.
*16.0.5* FREEPBX-21612
*16.0.4* FREEPBX-21609: Add button only save rules.
*16.0.3* FREEPBX-21472: Correct layout
*16.0.2* FREEPBX-21053, backup and restore custom rules
*16.0.1alpha* 16.0.1 alpha release
</changelog><depends><file>/usr/lib/sysadmin/includes.php</file><module>sipsettings ge 13.0.23.1</module><module>manager ge 13.0.2.5</module><version>15.0.6.18</version></depends><location>packages/firewall/firewall-16.0.57.6.tgz.gpg</location><md5sum>fd5251c02ae0e1e5b10818dc8c922928</md5sum><supported><version>16.0</version></supported><console><command><name>firewall</name></command></console><oobe></oobe><signed><type>gpg</type><sha1>981cc78de4969f4dad4c2c6cd8074cce259d0d85</sha1></signed><sha1>a29d83e3b2d6e38277ac1bbfd35ef6a6a8105d31</sha1><packaged>1671164159</packaged></firewall><framework><rawname>framework</rawname><modtype>framework</modtype><repo>standard</repo><name>FreePBX Framework</name><version>16.0.40.4</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv2+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><candisable>no</candisable><canuninstall>no</canuninstall><changelog>
*16.0.40.4* FREEPBX-24238 Adding common api to fetch from email address
*16.0.40.3* Packaging of ver 16.0.40.3
*16.0.40.2* FREEPBX-24155, FREEPBX-23922 and FREEI-35
*16.0.40.1* FREEPBX-24135 and FREEPBX-24000
*16.0.40* Packaging of ver 16.0.40
*16.0.39* FREEPBX-24071
*16.0.38* Packaging of ver 16.0.38
*16.0.37* FREEPBX-24071
*16.0.36* Packaging of ver 16.0.36
*16.0.35* FREEPBX-24044
*16.0.34* Packaging of ver 16.0.34
*16.0.33* FREEI-4700 Integrated password management
*16.0.32* FREEPBX-23698
*16.0.31* FREEPBX-23698
*16.0.30* FREEI-5469
*16.0.29* FREEI-5495
*16.0.28* Packaging of ver 16.0.28
*16.0.27* FREEI-5471 MFA module blocks UCP login
*16.0.26* Packaging of ver 16.0.26
*16.0.25* Packaging of ver 16.0.25
*16.0.24* Packaging of ver 16.0.24
*16.0.23* FREEPBX-23764
*16.0.22* FREEI-5204 , FREEPBX-23744 and FREEPBX-23722
*16.0.21.21* FREEPBX-23737 FreePBX 16 Does Not Support Asterisk 20
*16.0.21.20* Packaging of ver 16.0.21.20
*16.0.21.19* FREEPBX-23716, FREEPBX-23723 FREEPBX-23719 and FREEPBX-23720
*16.0.21.18* Packaging of ver 16.0.21.18
*16.0.21.17* Packaging of ver 16.0.21.17
*16.0.21.16* Packaging of ver 16.0.21.16
*16.0.21.15* FREEPBX-23675
*16.0.21.14* Packaging of ver 16.0.21.14
*16.0.21.13* Packaging of ver 16.0.21.13
*16.0.21.12* Packaging of ver 16.0.21.12
*16.0.21.11* Packaging of ver 16.0.21.11
*16.0.21.10* Packaging of ver 16.0.21.10
*16.0.21.9* Packaging of ver 16.0.21.9
*16.0.21.8* FREEPBX-23602
*16.0.21.7* Packaging of ver 16.0.21.7
*16.0.21.6* Packaging of ver 16.0.21.6
*16.0.21.5* Packaging of ver 16.0.21.5
*16.0.21.4* FREEI-4994 checkFreeSpace API issue
*16.0.21.3* Packaging of ver 16.0.21.3
*16.0.21.2* FREEI-4881 Right Side Menu collapse after some time of pageload
*16.0.21.1* bump
*16.0.21* FREEI-4933
*16.0.20* Reverting bootstrap and dependent libs
*16.0.19.6* FREEI-4701
*16.0.19.5* FREEI-4701 and FREEI-4635
*16.0.19.4* FREEI-4611
*16.0.19.3* Packaging of ver 16.0.19.3
*16.0.19.2* Packaging of ver 16.0.19.2
*16.0.19.1* FREEI-4580 , FREEI-4603 and FREEPBX-23393
*16.0.19* Packaging of ver 16.0.19
*16.0.18* FREEI-4572 updated sortablejs library and Replacing Zend checks with ioncube
*16.0.17* FREEI-4562
*16.0.16* FREEPBX-23145, FREEPBX-23128 and FREEPBX-23218
*16.0.15* Packaging of ver 16.0.15
*16.0.14* Packaging of ver 16.0.14
*16.0.13* Packaging of ver 16.0.13
*16.0.12* Packaging of ver 16.0.12
*16.0.11* FREEPBX-23209, FREEPBX-23218, FREEI-4274 and FREEI-4372
*16.0.10.51* FREEPBX-23261
*16.0.10.50* Packaging of ver 16.0.10.50
*16.0.10.49* Packaging of ver 16.0.10.49
*16.0.10.48* Packaging of ver 16.0.10.48
*16.0.10.47* FREEPBX-23186, FREEI-4246, FREEI-4233 and FREEI-4220
*16.0.10.46* Fixing FREEI-4291 Adding Asterisk 19 support
*16.0.10.45* FREEPBX-23111
*16.0.10.44* FREEPBX-23121 and FREEPBX-23110
*16.0.10.43* Packaging of ver 16.0.10.43
*16.0.10.42*
*16.0.10.41* FREEI-3815
*16.0.10.40* Packaging of ver 16.0.10.40
*16.0.10.39* Packaging of ver 16.0.10.39
*16.0.10.38* Packaging of ver 16.0.10.38
*16.0.10.37* FREEI-3815 upgradeallmodules GQL API update
*16.0.10.36* FREEPBX-22910 Upgrade rmccue request library to latest version
*16.0.10.35* FREEPBX-22910 Upgrade rmccue request library to latest version
*16.0.10.34* Packaging of ver 16.0.10.34
*16.0.10.33* FREEPBX-22592 and Fixing GQL upgradeAll API
*16.0.10.32* FREEI-3168
*16.0.10.31* FREEI-3319 Backup and Restore is overwriting the values for module_repo
*16.0.10.30* Packaging of ver 16.0.10.30
*16.0.10.29* FREEI-3957 swaped implode function parameters
*16.0.10.28* FREEI-3833 Backup &amp; Restore issue fix
*16.0.10.27* Packaging of ver 16.0.10.27
*16.0.10.26* FREEI-3909 created new gql api 'fetchInstalledModules' to get all installed modules
*16.0.10.25* Packaging of ver 16.0.10.25
*16.0.10.24* FREEI-3868
*16.0.10.23* FREEI-3562 GQL fix
*16.0.10.22* FREEI-3403 Fixing updateSystemRPM GQL API issue
*16.0.10.21* FREEI-3704 removed extra trim operation code
*16.0.10.20* Packaging of ver 16.0.10.20
*16.0.10.19* FREEI-3656
*16.0.10.18* Packaging of ver 16.0.10.18
*16.0.10.17* FREEPBX-22538 removed stale comments from manager.conf
*16.0.10.16* Packaging of ver 16.0.10.16
*16.0.10.15* Improving GQL API failure status
*16.0.10.14* Packaging of ver 16.0.10.14
*16.0.10.13* Packaging of ver 16.0.10.13
*16.0.10.12* Packaging of ver 16.0.10.12
*16.0.10.11* FREEI-3394 Adding fwconsole GQL APIs
*16.0.10.10* FREEI-3328 and FREEI-3377
*16.0.10.9* FREEPBX-22019
*16.0.10.8* Packaging of ver 16.0.10.8
*16.0.10.7* Packaging of ver 16.0.10.7
*16.0.10.6* Packaging of ver 16.0.10.6
*16.0.10.5* Packaging of ver 16.0.10.5
*16.0.10.4* FREEI-3283 Chan_SIP disabled by default in new 16 installs
*16.0.10.3* FREEI-3255 Disable chanspy feature code by default on new installs
*16.0.10.2* Packaging of ver 16.0.10.2
*16.0.10.1* FREEPBX-22470
*16.0.10* Packaging of ver 16.0.10
*16.0.9* Packaging of ver 16.0.9
*16.0.8* Packaging of ver 16.0.8
*16.0.7* Packaging of ver 16.0.7
*16.0.6* Packaging of ver 16.0.6
*16.0.5* Packaging of ver 16.0.5
*16.0.4* Packaging of ver 16.0.4
*16.0.3* Packaging of ver 16.0.3
*16.0.2* Packaging of ver 16.0.2
*16.0.1* Inital Release
</changelog><description>
This module provides a facility to install bug fixes to the framework code that is not otherwise housed in a module
</description><depends><phpversion>7.4.0</phpversion></depends><supported><version>16.0</version></supported><console><command><command><name>chown</name></command><command><name>context</name><alias>cx</alias></command><command><name>debug</name><alias>dbug</alias></command><command><name>doctrine</name></command><command><name>kvstore</name></command><command><name>localization</name></command><command><name>moduleadmin</name><alias>ma</alias></command><command><name>motd</name></command><command><name>mysql</name><alias>m</alias></command><command><name>notifications</name><alias>notification</alias></command><command><name>reload</name><alias>r</alias></command><command><name>restart</name></command><command><name>session</name></command><command><name>setting</name><alias>set</alias></command><command><name>start</name></command><command><name>stop</name></command><command><name>system</name><alias><alias>sysup</alias><alias>sys</alias><alias>systemupdate</alias></alias></command><command><name>unlock</name></command><command><name>updatemanager</name><alias><alias>msm</alias><alias>modulesystemmanager</alias></alias></command><command><name>util</name></command><command><name>validate</name></command><command><name>extip</name><alias>externalip</alias></command><command><name>job</name></command></command></console><category>Admin</category><comment><comment></comment><comment></comment></comment><bugfix>http://issues.freepbx.org/browse/FD7-23</bugfix><signed><type>gpg</type><sha1>2ffd563b7f9ad7e41997a1f4223cc7f3e92caaba</sha1></signed><location>packages/framework/framework-16.0.40.4.tgz.gpg</location><md5sum>e8dd4669a070f42693cb9b3c03b575f4</md5sum><sha1>bf7a4e2f75a69e20fc22b6315f4f1dd44ac18707</sha1><packaged>1686209080</packaged></framework><fw_langpacks><rawname>fw_langpacks</rawname><modtype>framework</modtype><repo>extended</repo><name>Localization Updates</name><version>16.0.1</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv3+</license><licenselink>http://www.gnu.org/licenses/gpl-3.0.txt</licenselink><changelog>
*16.0.1* 16.0
</changelog><description>
This module provides a facility to install new and updated localization translations. Localization i18n translations are still kept with each module. This provides an easy ability to bring all components up-to-date without the need to publish dozens of modules for every minor change. The localization updates used will be the latest available for all modules regardless of the current version you are running.
</description><category>Admin</category><location>packages/fw_langpacks/fw_langpacks-16.0.1.tgz.gpg</location><md5sum>d682d1466b431ea7d6f3d2b2543eebae</md5sum><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>87700919656f6dc6b9f99d56ac10648d95aeda1e</sha1></signed><sha1>2c973b929a8e8e343a9214f864bd634ef9617fc8</sha1><packaged>1615898021</packaged></fw_langpacks><hotelwakeup><rawname>hotelwakeup</rawname><name>Wake Up Calls</name><repo>standard</repo><version>16.0.9</version><license>GPLv2</license><licenselink>https://www.gnu.org/licenses/gpl-2.0.txt</licenselink><publisher>Sangoma Technologies Corporation</publisher><category>Applications</category><description>FreePBX module for generating reminder and wakeup calls</description><more-info>https://wiki.freepbx.org/display/F2/Wake+Up+Calls+User+Guide</more-info><changelog>
*16.0.9* FREEPBX-24236
*16.0.8* FREEPBX-23913
*16.0.7* FREEPBX-23913
*16.0.6* FREEPBX-23910 and FREEPBX-23773
*16.0.5* FREEPBX-23854
*16.0.4* Reverting Bootstrap and dependent libs fixes
*16.0.3* FREEI-4793
*16.0.2* FREEPBX-23261: Fix crash to exec
*16.0.1* 16.0
</changelog><depends><module>ivr gt1.0</module><module>soundlang</module><module>recordings</module></depends><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>9dd9ffa655ffc1cff5d82240706e3f4f05131a4e</sha1></signed><location>packages/hotelwakeup/hotelwakeup-16.0.9.tgz.gpg</location><md5sum>317061ef68b4a1abd2b50433c2e61347</md5sum><sha1>3886002e532640495bafb70b248b87cbbc9e221b</sha1><packaged>1686800738</packaged></hotelwakeup><iaxsettings><rawname>iaxsettings</rawname><repo>standard</repo><name>Asterisk IAX Settings</name><version>16.0.4</version><publisher>Sangoma Technologies Corporation</publisher><licenselink>https://www.gnu.org/licenses/agpl-3.0.txt</licenselink><license>AGPLv3</license><category>Settings</category><description>Use to configure Various Asterisk IAX Settings in the General section of iax.conf.</description><more-info>https://wiki.freepbx.org/display/FPG/Asterisk+IAX+Settings</more-info><changelog>
*16.0.4* FREEPBX-24067
*16.0.3* Reverting Bootstrap and dependent libs fixes
*16.0.2* FREEI-4793
*16.0.1* 16.0
</changelog><supported><version>16.0</version></supported><signed><type>gpg</type><sha1>3af66a542f76859c9b926da585c0e1d487e4b07d</sha1></signed><location>packages/iaxsettings/iaxsettings-16.0.4.tgz.gpg</location><md5sum>afcb1d68e37f2f6f1bbea4f9d817c577</md5sum><sha1>e44f8f6428fa2310eef870a504e3e42bc4ae67be</sha1><packaged>1681223034</packaged></iaxsettings><infoservices><rawname>infoservices</rawname><repo>standard</repo><name>Info Services</name><version>16.0.2</version><publisher>Sangoma Technologies Corporation</publisher><license>GPLv2+</license><licenselink>http://www.gnu.org/licenses/gpl-2.0.txt</licenselink><candisable>no</candisable><canuninstall>no</canuninstall><category>Applications</category><description>Provides a number of applications accessible by feature codes: company directory, call trace (last call information), echo test, speaking clock, and speak current extension number.</description><more-info>https://wiki.freepbx.org/display/FPG/Feature+Code+Descriptions#FeatureCodeDescriptions-InfoServices</more-info><changelog>