All Activity
- Past hour
- Earlier
-
Eric Lizzio started following Hello World
-
Hello All, My name is Eric and I started my new role this week on our Technical Customer Support team. I look forward to working with you all! Thanks, Eric
-
Naman Kamdar started following Introduction!
-
Hello Everybody, My name is Naman Kamdar, and I have joined as a technical support specialist for the 2600 Hz project! It feels great to connect with you all!
-
Product Admin joined the community
-
How can I restrict a user from receiving calls from a specific user or a specific number in Kazoo? I would also like to limit the numbers a user can dial.
-
Kazoo Community / Kazoo v4.3 Keep-Alive Efforts
rdnn replied to Mooseable's topic in General OS Kazoo Questions
If you haven't joined the Discord already, please pop by and say hi. There's a whole channel dedicated to STIR/SHAKEN with a working implementation available for 4.3. -
Welcome! https://docs.2600hz.com/ consider checking the docs site out (though it has both legacy 4.3 and current 5.x docs so make sure you're looking at the right ones for your install).
-
Hi. I am a newbie using this platform. Exploring some documentation to learn about it. Which documentation may you recommend?
-
What are you looking for help on?
-
Thanks for let it know. wntpftp.!
-
@fmateo05 Hi there! Just a quick update — we’ve officially moved all of our documentation to our new site: docs.2600hz.com. You’ll find all the legacy Monster UI documentation there, along with a bunch of other helpful resources. As for open source, we’re still planning on it! That being said, we don’t have a formal timeline just yet. When it does happen, it’ll be based on version 5.4.
-
Also in the .org website there is no update for a long time.
-
That's why I keep saying Kazoo 5 is dead. Their very last KazooCon, they made all the videos unlisted, and no update on the project in over 5 years. The KazooCon site has been removed. It's dead. Even if you take a look at their main web site, there is zero mention of anything open source. It's all SaaS/Cloud now.
-
-
Hi, my name is Tim and I am the IT Manager for our company. We recently started using Kazoo (Monster UI) for our Simple Phone system. I have it working but need some help on advanced features.
-
Guest is attending Where can I download the full version of these books?
-
Kazoo Community / Kazoo v4.3 Keep-Alive Efforts
Chris Labonne replied to Mooseable's topic in General OS Kazoo Questions
Wow!! This is excellent! Yeah, we definitely want to be part of testing this and getting it stable on a current OS. Good move you guys! -
Kazoo Community / Kazoo v4.3 Keep-Alive Efforts
Mark McDonald replied to Mooseable's topic in General OS Kazoo Questions
@mc_ It's really not off topic as stir/shaken is required to keep 4.3 running past June. One of the primary project goals of the fork is implementing stir/shaken. I can't find any posts other than this about it: -
Kazoo Community / Kazoo v4.3 Keep-Alive Efforts
mc_ replied to Mooseable's topic in General OS Kazoo Questions
@Mark McDonaldThis seems off-topic for the post. Search what's existing related to stir/shaken or start a new post please. -
Kazoo Community / Kazoo v4.3 Keep-Alive Efforts
Mark McDonald replied to Mooseable's topic in General OS Kazoo Questions
@mc_, can you point me in the right direction as to where you guys added stir/shaken in v5? -
Using a third party FreeSwitch-based PBX as provisioner helper with Kazoo
Guest replied to a topic in General OS Kazoo Questions
https://github.com/fmateo05/provisioner-wfusionpbx-webhook -- This one is the last one; it uses a different scope -
Using a third party FreeSwitch-based PBX as provisioner helper with Kazoo
Guest replied to a topic in General OS Kazoo Questions
Yes, Now I did it. -
l problema que enfrento es el siguiente: mi empresa desea contratar un troncal SIP para ofrecer servicios de PBX en la nube. Mi proveedor de troncales me ha indicado que debo compatibilizar mi sistema (Kazoo) con la tecnología que utilizan, que es un IMS de Huawei. El inconveniente surge al momento de manejar las causas de las llamadas colgadas. El IMS trabaja con ISUP o Q.850, en lugar de utilizar las causas SIP que provocaron la desconexión. Por ejemplo, cuando se realiza una llamada a un usuario que no responde, el sistema devuelve un 486 USER_BUSY en la causa SIP, pero siempre responde con Reason: Q.850;cause=16;text="NORMAL_CLEARING". Esto se repite en situaciones como llamadas rechazadas, usario no responde o usuarios ocupados. En todos estos casos, el proveedor me ha indicado que, debido a esta inconsistencia, no podian ofrecerme el troncal SIP. Esto se debe a que por ejmplo podia ofrcer un mal servicio a la red telefonica de la pstn `pr ejemplo si un número de la PSTN llama a un troncal asociado a un usuario en Kazoo que está ocupado, el IMS devuelve "NORMAL_CLEARING" (causa 16) en lugar de "USER_BUSY" (causa 17). Como resultado, el número que llama recibe una respuesta que indica que la llamada se ha colgado normalmente, en lugar de un mensaje que informe que el usuario está ocupado. He intentado resolver esto de manera parcial y me va adar el tronco sip pero fue que lo engañe utilizando una modificación en FreeSWITCH, pero esto ha afectado el funcionamiento general de Kazoo. Modifiqué el archivo ecallmgr_fs_bridge.erl en el código fuente y cambié la función spec pre_exec(kz_term:proplist(), atom(), kz_term:ne_binary(), channel(), kz_json:object()) -> kz_term:proplist(). para establecer continue_on_fail en false pues lo tenia en true y añadí {"application", "set sip_ignore_remote_cause=true"}. Esto hace que, si el puente falla, no continúe el plan de marcado y se ignore la causa remota de la desconexión. Sin embargo, esto ha generado un problema: si el usuario le activo el buzon de voz el funcionamiento real deberia ser no hizo el puente continua plan de marcado y llega a su buzon de voz sin embargo como continue_on_fail en false nunca se llega a la parte del puente, y no llega al buzon de voz. Aclara tambien que si el usuario no tiene ningun dispositivo registrado siemre siempre devuelve SIP/2.0 480 Temporarily Unavailable con la causa Q.850;cause=16;text="NORMAL_CLEARING". Cabe mencionar que otros errores, como "no route destination" o "incompatible destination", unallocated: number devuelven correctamente el Reason: Q.850 corres`pondiente ¿Podrías orientarme sobre cómo podría corregir esto para lograr una mejor compatibilidad y que Kazoo funcione adecuadamente? He observado en los logs de Kazoo y FreeSWITCH que el canal se cierra con exec: uuid_kill(UUID) y que, por defecto, esta API de FreeSWITCH siempre finaliza con causa 16 (normal clearing). Sin embargo, sé que si ejecutas exec: uuid_kill UUID, puedes especificar una causa, como 17, para cerrar el canal. No estoy seguro de cómo implementar esta opción y en qué parte podría mapear la causa para finalizar la llamada con la causa correcta. Agradezco de antemano cualquier orientación que puedas brindarme
-
I have Alma8 Binaries for Kazoo 4.3 btw, Just need to go through testing
-
"it's dead, Jim"
-
Hey @mc_ we're days away from the end of Q1'25; any updates you can share on the Open Source availability? Thanks!!