Search results

  1. whut

    Transfer a call and then call back the transferring extension if destination no answer

    Blind transfer gets you quickly out of the call and you no longer have any control of the call. To accomplish this 'call back' function I would make a dialplan that uses a timeout and call back to the 'referred by' as the call park / valet park is doing. Your call timeout would need to be less...
  2. whut

    when change Sip Profile, it is not affect

    You can submit a pull request to fix the issue
  3. whut

    when change Sip Profile, it is not affect

    restart freeswitch after making changes to sip profiles
  4. whut

    Transcription not sent in emails first time, is sent on resend.

    openai is the default choice for both the text to speech and the speech to text modules. If you look at https://github.com/fusionpbx/fusionpbx-app-transcribe/tree/main/resources/classes and https://github.com/fusionpbx/fusionpbx-app-speech/tree/main/resources/classes you will see the currently...
  5. whut

    FusionPBX to OpenAi/GPT Voice Mode

    fusionpbx has text to speech and speech to text modules. You can configure each to be connected to multiple AI TTS and STT providers. https://github.com/fusionpbx/fusionpbx-app-speech https://github.com/fusionpbx/fusionpbx-app-transcribe Though I do not see instructions in the repositories on...
  6. whut

    Transcription not sent in emails first time, is sent on resend.

    Transcribe = speech to text Speech= text to speech Some services only provide 1 of these functions. Some functions use different settings (ex: API keys) if they provide both functions. There are more reasons why the services/applications are individualized. It seems that the email needs to...
  7. whut

    Transcription not sent in emails first time, is sent on resend.

    I have seen openai transcription in emails not be included far too often. The transcription does not seem to be returned quickly enough to be included in the email.
  8. whut

    Postgres as core database

    Don't chase sqlite squirrels and rabbits. When you have been locked out of gui and ssh start with all firewalls and vpns.
  9. whut

    Using default setting variables

    All of this is conjecture and you will need to test the suggestions!
  10. whut

    Using default setting variables

    I believe you could use the freeswitch variables as you are thinking, but I have not tried it. As an example of how you may need to reference the variables you create in freeswitch variables I would filter them on 'us-ring'. You will see the 'us-ring' variable is defined in Ringtones but then is...
  11. whut

    SOLVED A little feedback on the update to 5.3.3

    You need to run the database and app updates for the default settings to be created. I would delete the custom and try again.
  12. whut

    Internal call block

    Do as I had originally suggested with a condition of call direction = local. I would suggest other conditions like caller = xyz and caller = abc. I would also recommend thorough testing. What happens when an extension tries to transfer a call, as an example. Test from any and all scenarios a...
  13. whut

    Call Block problem with list.

    8.2 is supported https://github.com/fusionpbx/fusionpbx-install.sh/blob/master/debian/resources/php.sh
  14. whut

    Call Block problem with list.

    Run again
  15. whut

    Call Block problem with list.

    Run fusion updates. ALL fusion updates, 1 at a time, in order, log out and back in
  16. whut

    SOLVED Need to remove Privacy header

    unset it again in a later order dialplan. would that work?
  17. whut

    SOLVED Need to remove Privacy header

    o_O The unset, as suggested early, is the method that I would expect to work. o_O
  18. whut

    On again, Off again.

    networking issues. I would start by having the customer disable SIP ALG on their router. Test their domain from your network with your office phones being registered to the domain to prove to yourself and them that it is their networking. Use TCP instead of UDP since UDP has a very limited...
  19. whut

    SOLVED p-asserted-identity sip header

    I would set the extension CID number in E164 as pbxgeek suggested. Then check your cdr call logs, sngrep, and verify it it meeting the provider's request.
  20. whut

    SOLVED Need to remove Privacy header

    I think that the B leg will include privacy: none if you have not explicitly set that in the A leg. When you set the privacy settings like `sip_h_Privacy=id` in the dialplan, did you try inline=true? When I am stuck I throw everything you can to try to force the settings. The unset, set, export...