Search results

  1. Dast

    SOLVED LDAP Integration problems

    Glad you figured it out. As you mentioned, "user_group_uuid" was the key we were looking for. You can either hardcode your uuid in the ldap.php file, or set it up to use a config variable as the uuid as per one of my last posts. Be sure to undo/remove any test/debug stuff you added along the...
  2. Dast

    SOLVED LDAP Integration problems

    You can get the group uuid by going to Advanced > Group Manager > click the group you want, copy the uuid from the url It will look something like this;
  3. Dast

    SOLVED LDAP Integration problems

    When looking at that ldap.php file, it appears the user is assigned to a new group as per this line; $array['user_groups'][0]['user_group_uuid'] = uuid(); You could try replacing that line with; $array['user_groups'][0]['user_group_uuid'] = (!is_null($_SESSION["ldap"]["assign_group_uuid"]) &&...
  4. Dast

    Multiple IVR Levels

    I have multi-level IVR for at least 10 domains, no issues as of yet. Yes it is possible to create loops, it is up to you to handle loop scenarios and provide callers a way out.
  5. Dast

    SOLVED LDAP Integration problems

    Based on the following link, it appears the ldap user is assigned to the `user` group like you want, assuming that username doesn't already exist in fusionpbx...
  6. Dast

    FusionPBX v5 DSS Key Icons

    I see. That explains why I couldn't find any such docs. Thank you
  7. Dast

    FusionPBX v5 DSS Key Icons

    Hi all, I'm wondering where I can find a list of available icon names for Yealink phones? I'm specifically looking for models T46s and T56a, but any pointers would be appreciated. I'm trying to change the icons shown on the phone for the following setup;
  8. Dast

    Agent ring timeout

    You're entirely correct. Can't believe I missed that, I figured it was somewhere obvious. Thanks again, I appreciate you
  9. Dast

    Agent ring timeout

    Hi all, I have a call center queue using ring-all with no tier rules, which works fine and calls all available agents. The issue is that it rings each agent for only about 10 seconds, can anyone advise where I can change this value? The agent's extensions have a "Call Timeout" of 30.
  10. Dast

    Play music on hold while LUA task execution

    You could look into uuid_broadcast which seems to be async, you can use it to execute another dialplan. The examples in the docs look promising; https://freeswitch.org/confluence/display/FREESWITCH/mod_commands#mod_commands-uuid_broadcast
  11. Dast

    MWI Cisco SPA 525G2 not lighting up

    Just curious what system they were working with prior to switching to Fusionbpx? In my limited experience, Cisco voip phones are a pain in the ass when it comes to SIP.
  12. Dast

    Monitoring connections to fusion

    It is possible its either your firewall or a firewall the customer is using. I guess it couldn't hurt too much to whitelist all the traffic from their IP to see if that helps, if so then go from there to further refine the access. CSF is probably a bit overkill for a simple voip server, but if...
  13. Dast

    Call center agents, with follow-me

    I did search before posting, didn't find it. Just did another search, still found nothing. Any applicable search terms you could provide to help narrow the search would be helpful. Thank you, this is very helpful and to the point. Much appreciated. It seems straight forward enough that I'll...
  14. Dast

    Call center agents, with follow-me

    Hi all, I have a call center queue setup using the "callback" type, where the agents are signed in all the time (they never signout). The agent extensions also have "Follow-Me" enabled, whereby if their extension is not registered then it is diverted to their remote extension (on their cell...
  15. Dast

    Inbound Destination complains of no destination defined

    That was definitely it, thank you very much. I had assumed being the `admin` user granted me all permissions, turns out there was a few random ones I was missing.
  16. Dast

    Inbound Destination complains of no destination defined

    I'm trying to modify an existing inbound destination via fusionpbx. Whenever I attempt to save changes it gives me the following error; For context, here is a screenshot of the config I'm attempting to save; The error message doesn't really make sense to me, as a destination is defined. Is...
  17. Dast

    Call drop after 30 seconds

    Sorry for the late update, I was impacted by some recent bushfires here in Australia. Anyway I did have a chance to look into this again, and through-out my testing I happened to switch the external endpoint to use TCP instead of UDP. This caused it to work straight away, which is rather...
  18. Dast

    Call drop after 30 seconds

    I have now done a packet capture on the WAN of the router, and I am seeing the ACK's are being sent to port 5090(on the router) by the external handset. These packets are being allowed through the firewall, but I have disabled the firewall for the time being. At this stage it seems either the...
  19. Dast

    Delete this thread

    Thread no longer required. Please delete
  20. Dast

    Call drop after 30 seconds

    Up until now I had just been using siptrace in fs_cli. So I did a packet capture on the pbx, internal handset, and a siptrace on the external handset. I've discovered that the external handset is indeed sending ACK's in response to INVITE's, as shown in the snippet below; Below is a screenshot...