Search results

  1. whut

    Importing users

    manual work... You can nearly get all of it done by using the various imports. It is a good idea to plan the order of imports. Upload users, extensions, then devices. Both extensions and devices import can include username data for the users that you hopefully imported before the extensions &...
  2. whut

    Monitor audio quality on Yealink phones

    Those are close enough for me! :D
  3. whut

    Monitor audio quality on Yealink phones

    @bradgarrison have you found the Yealink phone's reported MOS is the same or close to what is being reported in CDR page?
  4. whut

    No Voicemail destination/actions in context menus anywhere

    Did you run #1, #2, #2B, #3, #4, & #5 each individually in succession? You need to run all of them in your situation where you are missing permission to ensure no updates are the culprit. I persist in this question because many people say "yes I ran updates" only to find out they only ran #1.
  5. whut

    No Voicemail destination/actions in context menus anywhere

    Go back to Advanced > Update in the GUI. Run every update option 1 at a time in order. 1, 2 ,2B, 3, 4, & 5. Then look for the permission again.
  6. whut

    No Voicemail destination/actions in context menus anywhere

    Did you run permission updates when you ran updates? The permission will be in the list in your screenshot.
  7. whut

    No Voicemail destination/actions in context menus anywhere

    Definately follow the recommendation and ensure voicemail_destinations permission is enabled for superadmin (assuming that is the permission group you are using). Logout and back in if the problem persists. I just checked one of the servers with this issue and that fixed it. I obviously...
  8. whut

    Best Practices for New Groups and Menus (Menu Copying?)

    Protected menus items and sub-menu items are exempt from updates and restore default in the code behind. But there is some oddness when a menu is protected and a submenu is not protected, and the other way around. Your approach to creating new menu and sub-menu and protecting them is currently...
  9. whut

    No Voicemail destination/actions in context menus anywhere

    You are not the first to have this issue. I have not dug into why voicemail boxes are missing from the list for some servers yet. I recommend submitting a ticket to fusionpbx as you are not the only one with this problem. As a temporary workaround: 1. select the extension as the time out...
  10. whut

    Block or route anonymous incoming calls.

    @bradgarrison, the call block Name is exact string including case, so I recommend create at least 3 variations in lowercase, uppercase, and propercase for better blocking of variations on Anonymous.
  11. whut

    sip contain sms/message

    Thank you for trying that @hfoster . It still is not working for me. I will look into it further.
  12. whut

    Grandstream HT286 does not register

    Fusionpbx does have an auto provisioning template for this device. https://github.com/fusionpbx/fusionpbx/blob/master/resources/templates/provision/grandstream/htx86/%7B%24mac%7D.xml The provisioning template does state "Configuration template for firmware version 1.1.0.45 (HT486 REV.2, HT286...
  13. whut

    sip contain sms/message

    @hfoster, thank you for finding that. I have tried that previously and I have not been successful in getting the message to appear for the extension. fs_cli says 'Sent' but I see nothing else. dialplan tools is enable and is running. Would you be so kind as to give it a go from fs_cli to see if...
  14. whut

    Grandstream Provisioning

    It has been awhile since I last used Grandstream. But here are some memories for the phone's embedded webpages. set config upgrade path to https (preferred over http) do not include https:// or https:// in the config server path you might also set firmware upgrade and provisioning away from...
  15. whut

    Let's Encrypt Auto Renewal

    unfortunately not all dns providers allow api script. :mad::eek: but very good if they do!
  16. whut

    sip contain sms/message

    Long time listener, first time caller. Many phones have a 'messaging' application. Within this application you could (painstakingly) send a text message to another phone/extension on the server. You can also do this with more ease through the phone's embedded webpages. How could I send a text...
  17. whut

    Let's Encrypt Auto Renewal

    You are correct @Jonathan Black. You have provided valuable feedback. I forget about the renewal emails from lets encrypt even though I received these emails just last week for a group of domains. One of the reasons I choose manual is because my firewall rules are strict enough that they block...
  18. whut

    Let's Encrypt Auto Renewal

    You could setup auto renewal by using certbot or with acme. Or you could edit the letsencrypt shell script to hardcode your domain name(s) and email address foregoing the user input of the shell script. Certbot and acme have auto renew and auto renew dry run. These will cost you more time to...
  19. whut

    911 Outbound Route lua Email

    Make sure every extension has the fields populated for effective, outgoing, and emergency. Many carriers will block outgoing calls without this populated. sql update statements or bulk account tool will help populating the majority en mass.
  20. whut

    911 Outbound Route lua Email

    ${email_to} and ${email_from} are variables that are meant to be created and populated within the 911/933 dialplan. I like to create dialplan entries Action | set | email_to=rabbiddiesel@here.org, and similar for email_from. Then the 911/933 line "email.lua ${email_to} ${email_from}...." will...