Search results

  1. A

    Pi Buster shutdown or loss of power. FusionPBX did not load on power up

    FusionPBX is not a daemon service that needs to start on boot it's mostly web application the files are at /var/www/fusionpbx. What's exactly that's not working?
  2. A

    Applications Tab issue?

    the dropdown list is not height responsive only solution is to minimize your browser view
  3. A

    Multi Registration Issues

    did you reload your sip profile after disabling manage-shared-appearance? You can also explicitly set multiple-registration to false to be sure it's disabled. enable it on fusion set the value to false.
  4. A

    Multi Registration Issues

    The reason for that is because freeswitch automatically turns on multiple-registrations if it doesn't exist in the profile and manage-shared-appearance has a value of true
  5. A

    Multi Registration Issues

    The reason for that is the old registrations didn't expire yet so they still persist till they expire if you have low registration expire time this shouldn't be an issue you can always turn off mutli-regstrations in sofia profiles
  6. A

    T54w issues

    I have noticed on the T54w phones that setting DTMF to rfc2833+SIP INFO is not working, only setting it to rfc2833 or SIP INFO works. If anyone has noticed this or has any info about it let me know
  7. A

    Using voicemail app via LUA

    fusion doesn't use Freeswitch's mod_voicemail, it has his own voicemail app written in Lua
  8. A

    Apartment Door Entry

    I have a customer that's using WatchNET AVCMC7. I didn't have any problems with it. The only issue with it, it has direct dialing on the display that cannot be disabled. I have found a workaround to disable them from direct dialing.
  9. A

    Callerid for voicemail call back (option 5)

    You need to set inline to true
  10. A

    Email to Fax Configuration

    Disable smtp_hostname
  11. A

    500 Internal Server Error. from Yealink Phones on BLF Notify

    I just spoke with a Freeswitch expert he said it's a known issue in Freeswitch. The CSeq in Freeswitch is based on the number of seconds elapsed from the beginning of the year. Since it is a new year, the CSeq from last year was higher than today, and the phone doesn't like it. rebooting the...
  12. A

    500 Internal Server Error. from Yealink Phones on BLF Notify

    I just checked my packet captures, the last pcap file of 2019 it was still working fine the first pcap file of 2020 I already see the 500 error
  13. A

    500 Internal Server Error. from Yealink Phones on BLF Notify

    Hey we're at the new year a year later @Adrian Fretwell I just noticed this issue on my server as well, all phones are responding to the NOTIFY with a 500 internal server error. id anyone found the cause?
  14. A

    Troubleshooting Tip - Inbound calls

    I would like to add to your tip, there are situations where gateways should come into consideration when troubleshooting inbound calls. That's when using gateways with registration, sometimes the carriers won't send the phone number in the INVITE line, but only in the To: header. The default...
  15. A

    Move Call Recording to NFS

    both of the above options are missing moving the recordings to the NFS location right after the call has finished. I wrote a bash script that gets executed right after a call hangs up through setting an api_hangup_hook in the dialplan add this to the user_record dialplan right before the...
  16. A

    How to setup Paging to not put active calls on hold

    I have a function that escapes all magic characters found online a while ago can be very useful function escape_magic_char(str) local magic_char = '(['..("%^$().[]*+-?"):gsub("(.)", "%%%1")..'])' return str:gsub(magic_char, "%%%1") end
  17. A

    Grandstream Wave QR code feature.

    I think it's only supported in master branch
  18. A

    deleting voicemail greetings issue

    goto app/voicemail and rename voicemail id and then rename back to the original one interesting it looks like a bug
  19. A

    Regular expression for caller_id_name

    check out https://regex101.com/ it can definitely help you out on regex