Search results

  1. J

    Switch hostname

    We have a freeswitch cluster set up and there’s one particular Gateway that needs to be tied to just one of our servers in cluster. There’s a “hostname” parameter. Simply putting the FQDN of my machine did not do the trick. Is there more involved? noticed the same functionality in Variables...
  2. J

    Polycom Phonebook

    Is it currently possible to remotely provision the phonebook and auto generate mac-directory.xml? Thank you
  3. J

    Calling Between Nodes

    https://www.pbxforums.com/threads/experimenting-with-a-full-load-sharing-cluster.867/
  4. J

    Polycom Volume

    We are currently migrating from another system and am unable to replicate this issue with the other system. Polycom VVX, both the same firmware (6.1) but with fusionpbx for some reason any time I request a config update or reboot the phone, the speaker and volumes both revert to default...
  5. J

    Group Permissions - Hide domain possible?

    Is it possible to assign a user group to only view specific domains? Or more importantly, to hide a few domains?
  6. J

    Wrong Time Stamp on Voicemails

    There seems to be an issue with the update. All times will show up as X:09:XX. In other words, the TZ is correct, the hours are correct, the minutes will always be displayed as 09, and the seconds are correct. I am unable to figure out how to rectify that. I will also file a bug report if I do...
  7. J

    Google Cloud Speech to Text Voicemail Transcription

    @markjcrane please feel free to use this for fusionpbx's code. I am a bit tied up the next few days but I will work on organizing the code and contributing to git early next month. Hopefully in time to use it in the email queue as well. Edit: I just figured it all out and submitted the git...
  8. J

    git pull question

    Sorry to waste your time, really dumb question. But, there are some files that I modified to my liking. If I were to do a git pull, I think it will overwrite all my changes. Is there a way to do a git pull without overwriting custom changes? If not, is there an easy way to identify and back up...
  9. J

    Wrong Time Stamp on Voicemails

    Since this has not yet been addressed, here is the fix: sudo apt-get install lua5.2 luarocks luarocks install luatz cp -r /usr/local/lib/luarocks/rocks/luatz/ /usr/share/freeswitch/scripts/ chown -R www-data:www-data /usr/share/freeswitch/scripts/luatz Edit...
  10. J

    Cisco SPA Provisioning issue

    Sorry to waste your time, the last 2 days breaking my head and I inputted the completely wrong MAC address on the fusionpbx side.
  11. J

    Cisco SPA Provisioning issue

    Thanks for your response, please see the result below: interface: ens3 (45.x.x.x/255.255.254.0) filter: ( port 80 ) and ((ip || ip6) || (vlan && (ip || ip6))) ^Cexit 0 received, 0 matched root@pbx02:~# ngrep -d ens3 port 80 -W byline interface: ens3 (45.77.98.0/255.255.254.0) filter: ( port 80...
  12. J

    Cisco SPA Provisioning issue

    Thank you. All that was tried. Funny part is that the phone can read the other variables like the dial plan and some other settings. But the registration information refuses to pick up only from the phone. No other possibilities?
  13. J

    Cisco SPA Provisioning issue

    I am having an issue where Cisco SPA5xx attempts to download the config file, but the proxy/domain, username, password, protocol, and port number variables refuse to get pushed to the Cisco phone. If I navigate to the appropriate URL with chrome/firefox, the file looks perfect. Anyone have any...
  14. J

    Polycom Provisioning Template - Hide BLF of own extension

    Wondering if someone can help me with this In the mac.cfg file for polycom we have this code: {foreach $keys["line"] as $row} {if $row.device_key_type == "automata" || $row.device_key_type == "normal"}...
  15. J

    FusionPBX and OPUS question

    There’s a little more to it, you need to make sure that the opus module is loaded and running. Set the codec preference in variables. Also, if you have call recording turned on, it will not accept a reinvite to the codec; you’ll need to have recorded calls execute on answer instead
  16. J

    FusionPBX and OPUS question

    FreeSWITCH does its best to avoid transcoding. Go into your internal sip profile and make sure that codec negotiation is set to generous. Turn on late negotiation. there should also be something there about disable transcoding, make sure to turn that off. Finally, in your outbound routes, erase...
  17. J

    Can we have separate provisioning credentials for each domain?

    I already tried going to default settings --> provisioning and copied http_auth_username and http_auth_password to the other domain, but it will not load the file unless I explicitly use the credentials from default settings. Running on Debian 10, last git pull was 2 weeks ago Thank you
  18. J

    Music on Hold needs 3 seconds to start playing

    I, too, have the same issue. Latest git pull. Anyone have an idea?
  19. J

    Mailbox name on VM to email template

    I am using cidlookup, and I remember I had to set one of these, which ever is missing: effective_caller_id_name=${cidlookup_caller_id_name} caller_id_name=${cidlookup_caller_id_name}
  20. J

    Mailbox name on VM to email template

    I had a request to add the name of the voice mail box in the VM to email template. Can easily be done: Edit /usr/share/freeswitch/scripts/app/voicemail/index.lua Under get session variables, add line: origination_callee_id_name = session:getVariable("origination_callee_id_name"); Edit...