Search results

  1. K

    Azure Voicemail Transcription

    Thanks for the update! Were you able to get around the 10 second max recorded audio limit? https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/rest-speech-to-text#regions-and-endpoints
  2. K

    Follow me status - notify to Yealink BLF LED

    What does your event look like? Are you pushing the right information into the FreeSWITCH event socket? https://github.com/fusionpbx/fusionpbx/blob/master/resources/install/scripts/app/agent_status/index.lua#L155
  3. K

    No ring back on follow me calls

    Go to Dialplan -> Dialplan Manager. Edit Variables (order #20) Tag: action Type: set Data: ringback=%(2000,4000,440.0,480.0) Inline: true
  4. K

    device feature key sync

    Works great. If it doesn't work for you, then I would start by looking at the SIP conversations to see if signalling is happening. The SIP flow is described here. http://community.polycom.com/polycom/attachments/polycom/VoIP/2233/1/DeviceFeatureKeySynchronizationFD.pdf
  5. K

    GUI Wake-Up Call

    You can send me a buffalo as payment. Live or stuffed. Preferably stuffed for safety's sake.
  6. K

    GUI Wake-Up Call

    Here's a little lua script to send an email when an emergency call is made. Instructions: Simply add an action to your emergency outbound route. Make sure the order is a lower number than your bridge statement. Tag: action Type: lua Data: app.lua emergency_notify [to_email_address]...
  7. K

    Bypass media

    @babak I have a LUA based script that will issue a "uuid_media off" command based off matching IP addresses in the SDP portions of the call. I use this with clients that are using OpenSIPS as a mid-registrar. I don't use rtpengine, so I'm not sure I have a solution for that. The script looks...
  8. K

    Yet Another Take On Call Recordings Storage: AWS S3

    The script to delete recordings had some wrong column names. This is the updated version. <?php /* FusionPBX Version: MPL 1.1 The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with...
  9. K

    Yet Another Take On Call Recordings Storage: AWS S3

    Lately there seems to be a lot of chatter around moving call recordings off your local Fusion servers. I decided to go with AWS S3 using the S3FS-Fuse Client. This client allows you to mount a S3 Bucket right to your file system. The fuse client documents do not recommend it for production, but...
  10. K

    When softphone register fs_cli fills up with Warning.

    See if the clients have a "rport" setting that you can enable.
  11. K

    When softphone register fs_cli fills up with Warning.

    Sounds like client is behind a firewall with SIP ALG enabled. That's my gut reaction. Of course it could be something else...
  12. K

    Shared Line Appearance/Shared Call Appearance

    I do key system emulation using BLF's on park slots. Phone 1: Line button 1 - Extension: 1000 Line button 2 - BLF: park+*5901 Line button 3 - BLF: park+*5902 Line button 4 - BLF: park+*5903 Phone: Line button 1 - Extension: 1001 Line button 2 - BLF: park+*5901 Line button 3 - BLF: park+*5902...
  13. K

    Any help getting my regex in place to extract the correct DDI on my SIP trunk?

    You will need to post your logs now. Thanks.
  14. K

    Any help getting my regex in place to extract the correct DDI on my SIP trunk?

    There ya go! Go to Inbound Routes. Edit caller-details. Change caller_destination=${destination_number} to caller_destination=${sip_to_user}
  15. K

    Any help getting my regex in place to extract the correct DDI on my SIP trunk?

    If you click on the CDR it should show a lot more information. Also, can you post the complete SIP INVITE?
  16. K

    Any help getting my regex in place to extract the correct DDI on my SIP trunk?

    Look for 442392008648 (I believe that is your DID) in the variables portion of the CDR's. Is it set anywhere? Paste the SIP INVITE too. That would be helpful. You can use sngrep to easily get it.
  17. K

    Call Detail Record CDR modification

    Master branch (4.5) shows the following: Caller Name, Caller Number, Caller Destination, Destination, Recording, Start, TTA, Duration, PDD, MOS, Hangup Cause Caller Destination is the DID that was called. You can upgrade to Master (4.5) or steal parts of the code from the xml_cdr app. You...
  18. K

    Any help getting my regex in place to extract the correct DDI on my SIP trunk?

    uuid_dump the channel or look in the CDR details to see if the DDI is a freeswitch variable. If it's already a FS variable then you can manipulate that variable or set other things like destination equal to that value. That's the easiest place to start.
  19. K

    Call Flow - Set Remotely

    Master branch has a Destination dropdown feature for dialplan steps. You can go to Dialplan -> Dialplan Manager, edit a step, then select "Destination=True". The dialplan step will now show up in the dropdown box in Destinations. This is useful for things like Call-Flow or custom steps.
  20. K

    Multiple Wildcard Certs for Multiple Domains

    Has anyone configured the Fusion web interface with multiple wildcard certs for different domain? For instance: *.abc-company.com *.xyz-company.com I suspect I will need to set all this up in nginx. I'm just wondering if someone has gone down this path and what they did. Thanks!