]>
git.ipfire.org Git - thirdparty/freeswitch.git/log
Davide Colombo [Wed, 3 Feb 2016 16:36:14 +0000 (17:36 +0100)]
FS-8805: sanity check on array
Davide Colombo [Wed, 3 Feb 2016 16:11:25 +0000 (17:11 +0100)]
FS-8805: sanity check on array
Brian West [Tue, 2 Feb 2016 23:33:56 +0000 (17:33 -0600)]
FS-8789: remove ability to swap to personal canvas while recording and prevent recording while personal canvas is on.
Anthony Minessale [Tue, 2 Feb 2016 23:15:20 +0000 (17:15 -0600)]
FS-6833 #resolve [Allow Freeswitch to initiate Late offer calls.] #comment Regression from addition of custom variables
Brian West [Tue, 2 Feb 2016 17:18:04 +0000 (11:18 -0600)]
FS-8789 fix warning thats printed when it shouldn't be
William King [Tue, 2 Feb 2016 01:58:12 +0000 (17:58 -0800)]
Clean up whitespace, and remove surplus log line at crit level. #NOWIR
Anthony Minessale [Mon, 1 Feb 2016 22:23:36 +0000 (16:23 -0600)]
FS-8802 #resolve [RTP stops sending audio when sent timestamp rolls over]
Corey Smith [Sun, 31 Jan 2016 10:09:38 +0000 (05:09 -0500)]
FS-8778 #resolve FreeBSD: src/mod/endpoints/mod_verto/ws.h define __bswap_64
Italo Rossi [Sun, 31 Jan 2016 01:35:32 +0000 (22:35 -0300)]
FS-8768 - [mod_callcenter] Releasing db handle after reserving agent
rajeshvaya [Thu, 28 Jan 2016 08:38:00 +0000 (12:38 +0400)]
FS-8799 [mod_callcenter] Add JSON API interface for mod_callcenter
Adding a JSON API interface to fetch data in the JSON format. It abides with the JSON command and its implementations by other modules like mod_verto.
It outputs the exactly same column names as the data in CLI.
Various listing of mod_callcenter data such as agents, queues, members, tiers are as follows below.
- Listing of agents
Command: `json {"command": "callcenter_config", "format": "pretty", "data": {"arguments":"agent list"}}`
- Listing of queues
Command: `json {"command": "callcenter_config", "format": "pretty", "data": {"arguments":"queue list"}}`
- Listing of agents for a queue
Command: `json {"command": "callcenter_config", "data": {"arguments":"queue list agents", "queue_name":"support@default"}}`
(`queue_name` is a required)
- Listing of members(callers) for a queue
Command: `json {"command": "callcenter_config", "data": {"arguments":"queue list members", "queue_name":"support@default"}}`
- Listing of tiers for a queue
Command: `json {"command": "callcenter_config","data": {"arguments":"queue list tiers", "queue_name":"support@default"}}`
- Listing of members(callers)
Command: `json {"command": "callcenter_config","data": {"arguments":"member list"}}`
- Listing of tiers
Command: `json {"command": "callcenter_config","data": {"arguments":"tier list"}}`
It handles various errors and also returns back response in JSON as follow
E.g. Send a command without a required field (`queue_name`)
Command: `json {"command": "callcenter_config", "data": {"arguments":"queue list agents"}}`
Output: `{"command":"callcenter_config","data":{"arguments":"queue list agents"},"status":"error","message":"The command returned an error","response":{"error":"Missing data attribute: queue_name"}}`
Mike Jerris [Fri, 29 Jan 2016 17:51:40 +0000 (11:51 -0600)]
Merge pull request #661 in FS/freeswitch from ~ANDEE/freeswitch:bugfix/FS-8424-commit-
8f343939dc7f63f6a1686941e7d34e1cbf27a1c3 to master
* commit '
92ac448c951e575a8b9b417f5e8e5ed05341b586 ':
FS-8424 fix for default rounding values
Mike Jerris [Fri, 29 Jan 2016 17:10:55 +0000 (11:10 -0600)]
Merge pull request #682 in FS/freeswitch from ~WAL-D/freeswitch:bugfix/FS-8775-mod_say_de.c-is-missing-short_date_time to master
* commit '
f6e1056c9417f85024920fd4a6054b8b96b2bcbd ':
FS_8775 Add function SST_SHORT_DATE_TIME to mod_say_de.c and some language tweaks
Mike Jerris [Fri, 29 Jan 2016 17:10:15 +0000 (11:10 -0600)]
Merge pull request #684 in FS/freeswitch from ~CORSMITH/freeswitch:bugfix/FS-8777-FreeBSD to master
* commit '
7129dc32c8599569bc31e737e5072f75c934959d ':
FS-8777 #resolve FreeBSD: mod_redis/credis.c missing netinet/in.h include
Mike Jerris [Fri, 29 Jan 2016 17:07:06 +0000 (11:07 -0600)]
Merge pull request #689 in FS/freeswitch from ~SJTHOMASON/freeswitch:bugfix/FS-8782-mod_verto-fails-to-build-on-solaris to master
* commit '
2caa6efdacce9493a6a145aa6475d4b857fd4e9d ':
FS-8782: [mod_verto] fix build error for missing __bswap_64 on Solaris
Mike Jerris [Fri, 29 Jan 2016 17:05:19 +0000 (11:05 -0600)]
Merge pull request #690 in FS/freeswitch from ~SJTHOMASON/freeswitch:bugfix/FS-8195-compatibility-with-solaris-11-process to master
* commit '
4b9bf111d76495b0f97215ece8913e5a2c05ec07 ':
Allow Solaris privileges to work on both Solaris and derivatives
Mike Jerris [Fri, 29 Jan 2016 16:56:46 +0000 (10:56 -0600)]
Merge pull request #683 in FS/freeswitch from ~CORSMITH/freeswitch:bugfix/FS-8776-parallel-build to master
* commit '
28c23ab147a128f8a73156f65ca66b04359a4ab4 ':
FS-8776 #resolve Support GNU make parallel builds
Corey Smith [Wed, 27 Jan 2016 01:22:56 +0000 (20:22 -0500)]
FS-8776 #resolve Support GNU make parallel builds
* Explicitly define dependency tree for several modules
* Enable parallel builds for libtiff and libspandsp
* Verify module is enabled before attempting build. Allows
the virtual targets to be used for ordering without forcing
a build dependency.
Anthony Minessale [Thu, 28 Jan 2016 22:30:25 +0000 (16:30 -0600)]
FS-8798 #resolve [Typo in verto FSRTC lib]
Anthony Minessale [Thu, 28 Jan 2016 18:29:45 +0000 (12:29 -0600)]
FS-8796 #resolve [issues with verto mcast]
Italo Rossi [Thu, 28 Jan 2016 17:52:19 +0000 (11:52 -0600)]
Merge pull request #673 in FS/freeswitch from ~DCOLOMBO/freeswitch:bugfix/FS-8758-fix-scroll-bar-in-call-history to master
* commit '
9f7afc4bed01dc97ee1124b55d10f48d401315cd ':
FS-8758: scroll properly numbers in call history div
Davide Colombo [Thu, 28 Jan 2016 15:50:17 +0000 (16:50 +0100)]
FS-8792: apply video resolution on combobox video quality changes
Spencer Thomason [Thu, 28 Jan 2016 03:54:47 +0000 (19:54 -0800)]
Allow Solaris privileges to work on both Solaris and derivatives
Solaris does not have PRIV_PROC_PRIOUP but SmartOS does. This allows
fallback to this privilege on supported platforms
FS-8195 #resolve
Spencer Thomason [Thu, 28 Jan 2016 03:44:59 +0000 (19:44 -0800)]
FS-8782: [mod_verto] fix build error for missing __bswap_64 on Solaris
Anthony Minessale [Wed, 27 Jan 2016 20:02:40 +0000 (14:02 -0600)]
FS-8595 lower the q size by 1
William King [Wed, 27 Jan 2016 19:53:59 +0000 (11:53 -0800)]
FS-8788 Enabling stacksize limits for Debian packaging
Anthony Minessale [Wed, 27 Jan 2016 18:01:14 +0000 (12:01 -0600)]
FS-8787 #resolve [fs_cli prompt modifications]
Anthony Minessale [Wed, 27 Jan 2016 16:49:34 +0000 (10:49 -0600)]
FS-8786 #resolve [rtp-timeout-sec on profile triggers when receiving T.38 UDPTL frames]
William King [Wed, 27 Jan 2016 04:05:47 +0000 (20:05 -0800)]
Applied the Sangoma patch to FS version 1.2 in order to port to FS v1.6+
Sourced from:
http://gitlab.sangoma.com/projects/CORE/repos/freetdm/browse/public_freeswitch/sangoma-FS-1.2.patch
Corey Smith [Wed, 27 Jan 2016 02:13:31 +0000 (21:13 -0500)]
FS-8777 #resolve FreeBSD: mod_redis/credis.c missing netinet/in.h include
Spencer Thomason [Tue, 26 Jan 2016 20:35:59 +0000 (15:35 -0500)]
FS-8656: Fix switch_event_channel_broadcast identifier redeclared
Anthony Minessale [Tue, 26 Jan 2016 17:00:41 +0000 (11:00 -0600)]
FS-8770 #resolve [media_bug_answer_req=true results in a file being created for unanswered calls]
Chris Walder [Mon, 25 Jan 2016 20:07:40 +0000 (21:07 +0100)]
FS_8775 Add function SST_SHORT_DATE_TIME to mod_say_de.c and some language tweaks
German voice-mail is broken since mod_say_de.c is missing function SST_SHORT_DATE_TIME.
Insert function SST_SHORT_DATE_TIME into mod_say_de.c (refering and equal to mod_say_en.c) and tweaks some german language issues.
Seven Du [Mon, 25 Jan 2016 00:11:11 +0000 (08:11 +0800)]
FS-8688 #comment add more detailed logs and tweak some params for the comming libvpx 1.5.0
seems 1.5.0 doesn't support postproc, returns VPX_CODEC_INCAPABLE if set
Steve Underwood [Sat, 23 Jan 2016 17:58:36 +0000 (01:58 +0800)]
Fixed the application of the T.30 T1 timeout in faxing.
Ken Rice [Fri, 22 Jan 2016 22:43:23 +0000 (16:43 -0600)]
update my email address
Mike Jerris [Fri, 22 Jan 2016 22:40:02 +0000 (16:40 -0600)]
Merge pull request #678 in FS/freeswitch from ~KATHLEEN.KING/freeswitch:api-complete2 to master
* commit '
e5b5b9b2d8dd598ce51f1beed170141c002f91c9 ':
FS-8111 [mod_sofia] 'sofia' API command auto-complete cleanup
Mike Jerris [Fri, 22 Jan 2016 21:31:35 +0000 (15:31 -0600)]
Merge pull request #648 in FS/freeswitch from ~THEHUNMONKGROUP/freeswitch:feature/FS-8685-conference-relate-multiple-members to master
* commit '
75f94438bc85ca7394220279d65aea4164d9c060 ':
FS-8685: multiple member arguments for conference relate api command
Chad Phillips [Fri, 22 Jan 2016 19:13:47 +0000 (12:13 -0700)]
FS-8685: multiple member arguments for conference relate api command
multiple member arguments can be separated by a comma, eg:
conference foo relate 1 2,3,4 nohear
conference foo relate 1,2 3 nospeak
Anthony Minessale II [Fri, 22 Jan 2016 05:32:49 +0000 (23:32 -0600)]
Merge pull request #652 in FS/freeswitch from ~SJTHOMASON/freeswitch:bugfix/FS-8571-configure-with-disable-srtp-breaks to master
* commit '
e3e6bd875747c379ae78e7528dc66ce210c24ed9 ':
Add missing ENABLE_SRTP ifdef to allow building without SRTP
Kathleen King [Fri, 22 Jan 2016 02:34:56 +0000 (18:34 -0800)]
FS-8111 [mod_sofia] 'sofia' API command auto-complete cleanup
Mike Jerris [Thu, 21 Jan 2016 22:42:10 +0000 (16:42 -0600)]
Merge pull request #671 in FS/freeswitch from ~IVO/freeswitch:bugfix/FS-8756-dutch-localisation-issues-in-mod_say_nl to master
* commit '
5d140310bdb64982e3a184436b7c5c7c32be4e8c ':
FS-8756: [mod_say_nl] Improve dutch localisation
Mike Jerris [Thu, 21 Jan 2016 18:00:14 +0000 (12:00 -0600)]
Merge pull request #674 in FS/freeswitch from ~LAZEDO/freeswitch:feature/FS-8763 to master
* commit '
f80d6cc5517c6886dc15dc446c0519811c55d04e ':
FS-8763 [mod_sofia] set is_auth on switch_ivr_set_user result
Anthony Minessale [Wed, 20 Jan 2016 17:56:10 +0000 (11:56 -0600)]
FS-8759 #resolve [segfault on 1.7] #comment please update to master
Luis Azedo [Wed, 20 Jan 2016 16:09:17 +0000 (16:09 +0000)]
FS-8763 [mod_sofia] set is_auth on switch_ivr_set_user result
Mike Jerris [Tue, 19 Jan 2016 20:18:04 +0000 (14:18 -0600)]
Merge pull request #669 in FS/freeswitch from ~ICEHESS/freeswitch:feature/FS-8737-add-bill_msec-variable-to-default to master
* commit '
dee37afbb34990dea5d77e038cd5f55212893b97 ':
FS-8737: [mod_kazoo] Add require vars to default filter
Hesaam Farhang [Fri, 15 Jan 2016 23:02:01 +0000 (15:02 -0800)]
FS-8737: [mod_kazoo] Add require vars to default filter
Davide Colombo [Tue, 19 Jan 2016 16:02:58 +0000 (17:02 +0100)]
FS-8758: scroll properly numbers in call history div
Leo Noordergraaf [Tue, 19 Jan 2016 10:19:30 +0000 (11:19 +0100)]
FS-8756: [mod_say_nl] Improve dutch localisation
This change fixes various Dutch localisation issues.
Euro is used instead of Dollar
Some date/time digits are played different to be compatible with the Dutch language.
Anthony Minessale [Mon, 18 Jan 2016 21:25:19 +0000 (15:25 -0600)]
FS-8721 last should only be set on the ones we skip that will not be destroyed
Mike Jerris [Mon, 18 Jan 2016 16:50:33 +0000 (10:50 -0600)]
Merge pull request #670 in FS/freeswitch from ~LAZEDO/freeswitch:feature/FS-7776 to master
* commit '
4722992f66673680b510c5943f990955ca83cbc7 ':
FS-7776 build kazoo module
Luis Azedo [Sun, 17 Jan 2016 16:10:14 +0000 (16:10 +0000)]
FS-7776 build kazoo module
Seven Du [Fri, 15 Jan 2016 07:38:13 +0000 (15:38 +0800)]
and debug code vpx params
Anthony Minessale [Fri, 15 Jan 2016 19:58:53 +0000 (13:58 -0600)]
FS-8721 keep track of last on continue cases
Anthony Minessale II [Fri, 15 Jan 2016 19:49:32 +0000 (13:49 -0600)]
Merge pull request #668 in FS/freeswitch from bugfix/FS-8673-core-dump-on-playback-after-decode to master
* commit '
2db6cc18ea66a71edd8867d625be850395298886 ':
FS-8673 #resolve [core dump on playback after "Decode Codec is not initialized!" log message]
Anthony Minessale [Thu, 7 Jan 2016 00:48:16 +0000 (18:48 -0600)]
FS-8673 #resolve [core dump on playback after "Decode Codec is not initialized!" log message]
Anthony Minessale II [Fri, 15 Jan 2016 19:41:37 +0000 (13:41 -0600)]
Merge pull request #667 in FS/freeswitch from ~FRANCOIS/freeswitch-fs-8735:master to master
* commit '
b17602be09769e3f119b1eda41d9ad1806afc15d ':
FS-8735 display update support for Panasonic devices
Anthony Minessale [Fri, 15 Jan 2016 19:29:29 +0000 (13:29 -0600)]
FS-8721 #resolve [Bug removal at call end causes eavesdrop memory leak] #comment This should do it, bug_remove_all is called after destroy where it's more than safe to kill bugs indiscriminately
Anthony Minessale [Fri, 15 Jan 2016 19:14:07 +0000 (13:14 -0600)]
FS-8736 #resolve [Missing MEMMOVE macro in spandsp autoconf]
Anthony Minessale [Fri, 15 Jan 2016 17:26:30 +0000 (11:26 -0600)]
FS-8713 #resolve [crash on bad video rtp stream] #comment Pushed a patch to make the sizes match. This was the original intention since we want to preserve the packet as-is while in the jb
François [Fri, 15 Jan 2016 11:00:57 +0000 (12:00 +0100)]
FS-8735 display update support for Panasonic devices
Anthony Minessale [Thu, 14 Jan 2016 23:38:03 +0000 (17:38 -0600)]
FS-8734 #resolve [Video JitterBuffer Cleanup]
William King [Thu, 14 Jan 2016 22:46:34 +0000 (16:46 -0600)]
Merge pull request #666 in FS/freeswitch from feature/FS-8728-mod_amqp-add-logging-ability to master
* commit '
e7d2083263319499fbdf897e22fdb24ab3d81b55 ':
FS-8728 default configs
FS-8728 Adding logging profile and functionality
William King [Thu, 14 Jan 2016 22:45:51 +0000 (14:45 -0800)]
FS-8728 default configs
Anthony Minessale [Thu, 14 Jan 2016 21:12:01 +0000 (15:12 -0600)]
FS-8731 #resolve [Crash when leg-b invite video in voice call] #comment please update and retest
William King [Wed, 13 Jan 2016 22:22:57 +0000 (14:22 -0800)]
FS-8728 Adding logging profile and functionality
Anthony Minessale [Tue, 12 Jan 2016 22:29:37 +0000 (16:29 -0600)]
FS-8720 #resolve [Segmentation Fault when switch_channel_str2cause is called]
Michael Jerris [Tue, 12 Jan 2016 18:03:01 +0000 (13:03 -0500)]
Revert "FS-8720: [core] allow passing in blank/null to session::hangup to mean NORMAL_CLEARING hangup cause instead of segfault"
wrong fix for this issue
This reverts commit
3304492b411c46376d9b0d4dbe512c08390e4836 .
Mike Jerris [Tue, 12 Jan 2016 17:58:39 +0000 (11:58 -0600)]
Merge pull request #665 in FS/freeswitch from ~CXREG/freeswitch-8721:master to master
* commit '
7020d21e292090c4dc644fa47df1a3a9bd98ba78 ':
FS-8721: avoid memory leak when removing thread-locked bugs
Michael Jerris [Tue, 12 Jan 2016 17:25:36 +0000 (12:25 -0500)]
FS-8719: [mod_conference] fix seg when building without video support, but specifying video_mute_png variable for a conference member
Michael Jerris [Tue, 12 Jan 2016 15:56:41 +0000 (10:56 -0500)]
FS-8720: [core] allow passing in blank/null to session::hangup to mean NORMAL_CLEARING hangup cause instead of segfault
Dave Olszewski [Tue, 12 Jan 2016 09:27:03 +0000 (01:27 -0800)]
FS-8721: avoid memory leak when removing thread-locked bugs
Anthony Minessale [Fri, 8 Jan 2016 23:18:12 +0000 (17:18 -0600)]
FS-8716
William King [Fri, 8 Jan 2016 18:14:19 +0000 (10:14 -0800)]
Adding a file extension to the package build logs
Brian West [Fri, 8 Jan 2016 17:06:12 +0000 (11:06 -0600)]
FS-8715: [mod_sofia] make the oubound_proxy on the profile consistent with how we do the same thing on the gateway
Anthony Minessale [Fri, 8 Jan 2016 15:57:52 +0000 (09:57 -0600)]
FS-8716 actually fix typo
Anthony Minessale [Thu, 7 Jan 2016 22:46:30 +0000 (16:46 -0600)]
FS-8716 typo
Anthony Minessale [Thu, 7 Jan 2016 22:39:06 +0000 (16:39 -0600)]
FS-8716 #resolve [recording offset is delayed few seconds for rtmp stream]
Seven Du [Thu, 7 Jan 2016 09:11:52 +0000 (17:11 +0800)]
FS-8713 avoid write exceeding buffer
Seven Du [Thu, 7 Jan 2016 09:00:48 +0000 (17:00 +0800)]
Revert "FS-8713 #resolve avoid read exceeding buffer"
This reverts commit
1746d2ebc026e54aac35304b8885f385bb1067da .
Seven Du [Thu, 7 Jan 2016 06:11:48 +0000 (14:11 +0800)]
FS-8713 #resolve avoid read exceeding buffer
Nathan Neulinger [Wed, 6 Jan 2016 17:27:35 +0000 (11:27 -0600)]
mod_skinny: remove nested redundant mutex that could cause a hang
Nathan Neulinger [Wed, 6 Jan 2016 17:23:52 +0000 (11:23 -0600)]
mod_skinny: silence CID
1320795 by rearranging mutex aquisition, negligible impact
Nathan Neulinger [Wed, 6 Jan 2016 17:15:18 +0000 (11:15 -0600)]
mod_skinny: control flow issue reported by coverity CID
1294487
nneul on mst.edu [Wed, 6 Jan 2016 16:54:47 +0000 (10:54 -0600)]
FS-8711 #resolve [fix a couple of possible memory leaks in mod_skinny packet reading code]
Anthony Minessale II [Wed, 6 Jan 2016 16:09:35 +0000 (10:09 -0600)]
Merge pull request #664 in FS/freeswitch from bugfix/FS-8677-crash-possible-memory-corruption to master
* commit '
56a68e3ad9dcb61dd939c87f457e14455ef056a7 ':
FS-8677 #resolve [Crash (possible memory corruption) after codec change]
Anthony Minessale [Wed, 23 Dec 2015 22:03:35 +0000 (16:03 -0600)]
FS-8677 #resolve [Crash (possible memory corruption) after codec change]
Chris Rienzo [Tue, 5 Jan 2016 19:18:32 +0000 (14:18 -0500)]
FS-8708 [mod_rayo] fix example configuration to map to correct DETECTED_TONE event from spandsp_start_tone_detect
Eliot Gable [Mon, 4 Jan 2016 12:46:41 +0000 (12:46 +0000)]
FS-8706: Fix a segfault where no response status was set previously, and try to prevent future ones by setting default response status of 500.
Eliot Gable [Mon, 4 Jan 2016 12:19:43 +0000 (12:19 +0000)]
FS-8704: Add min-members, wait-min-members-timeout, wait-mod-timeout, wait-min-members-timeout-message, wait-mod-timeout-message, endconf-mod-exit-message, and endconf-message parameters and functionality to mod_conference.
Mike Jerris [Mon, 4 Jan 2016 21:13:25 +0000 (15:13 -0600)]
Merge pull request #663 in FS/freeswitch from ~RA/fs-ra-new:FS-8679-call-completed-elsewhere-2 to master
* commit '
507bc265bd9bc1aec2fe77fe34d4ca1050c84243 ':
FS-8679: [mod_sofia] no missed call if call is anwered by someone else
Raphael Lechner [Mon, 4 Jan 2016 20:33:24 +0000 (21:33 +0100)]
FS-8679: [mod_sofia] no missed call if call is anwered by someone else
sofia is sending Call completed elsewhere to the other involved phones if not disabled by the option ignore_completed_elsewhere
Andrew Cassidy [Mon, 4 Jan 2016 20:10:53 +0000 (20:10 +0000)]
FS-8424 fix for default rounding values
Anthony Minessale [Mon, 4 Jan 2016 19:37:29 +0000 (13:37 -0600)]
FS-8673
Anthony Minessale II [Mon, 4 Jan 2016 17:05:21 +0000 (11:05 -0600)]
Merge pull request #650 in FS/freeswitch from ~BORDMI/freeswitch:feature/FS-8694-list_users-performance-issue to master
* commit '
9cd86722e713112fbc32e80cf88502712aa663c4 ':
FS-8694 list_users performance issue update
Anthony Minessale [Mon, 4 Jan 2016 16:48:54 +0000 (10:48 -0600)]
FS-8673 #resolve [core dump on playback after "Decode Codec is not initialized!" log message]
Travis Cross [Thu, 31 Dec 2015 16:02:31 +0000 (16:02 +0000)]
Fix typo in freeswitch-doc package description
Michael Jerris [Wed, 30 Dec 2015 21:42:02 +0000 (16:42 -0500)]
FS-8683: [mod_conference] fix seg originating non video call into mcu video conference
Spencer Thomason [Tue, 29 Dec 2015 15:50:38 +0000 (15:50 +0000)]
Add missing ENABLE_SRTP ifdef to allow building without SRTP
FS-8571 #resolve
Dmitriy N. Borisov [Tue, 29 Dec 2015 06:01:47 +0000 (09:01 +0300)]
FS-8694 list_users performance issue update
William King [Mon, 28 Dec 2015 23:13:07 +0000 (15:13 -0800)]
FS-8692 Added functionality to mod_amqp command listener to be able to send the api response back as an event to an exchange defined in the api message headers