Recent content by yois

  1. Y

    DjangoPBX Beginners

    Woah, I just found out there's a new kid on the block. Long time FusionPBX user. After stumbling across this post, I looked at the DjangoPBX website, but am lacking details. For the benefit of myself and others coming from Fusion - when did this project start? Is this project a complete...
  2. Y

    NEED A HELP TO SET UP THIS FEATURE.. REQ PIN NUMBER TO CONNECT INBOUND RING GROUP

    The easy way without any programming: Create an IVR with one destination (your ring group) and the menu option is the PIN number. Set the Long Greeting to something like "Please enter the PIN number". Set max failures and max timeouts to 1. Set your invalid destination to hangup. The cooler...
  3. Y

    transfer VM's to a new server

    Unlike the Asterisk/FreePBX world, in FusionPBX the VM system relies on the database to know about voicemail messages. If you want to migrate to a different system, you'll need to make exports from the v_voicemails and v_voicemail_messages tables and make sure the UUID's of the boxes correspond...
  4. Y

    BLF and the Agent Status

    @hfoster - This commit solves your problem: https://github.com/fusionpbx/fusionpbx/pull/6520 Use agent+adam, it will light BLF and work to log in/out. You just need to modify your dialplan under *22 in the second section (for agent+) to use <action application="set" data="agent_name=$1"/>...
  5. Y

    BLF and the Agent Status

    I'm finding myself in your boat now. I changed my agent names to match their agent id. The problem I'm battling with is that the key stays RED when logging out from phone. In the Web UI it changes the light correctly, but from the phone I see the event firing with "terminated", but SNGREP...
  6. Y

    Outbound Routes

    Can you set the "Channels" option (in advanced) on the Gateway to 1... So once there's one channel it will attempt the next Gateway?
  7. Y

    Problem with blind transfer

    I know this is an old thread but I think I solved this with this PR: https://github.com/fusionpbx/fusionpbx/pull/6157 @kokir solution was correct, but you can only set one action on the B-Leg, so I did this via LUA. @leandrodes87 - The code in the dialplan for att_xfer doesn't allow for...
  8. Y

    External queue agents with call confirm

    I enabled SQL debug in follow_me LUA, and found that the domain UUID is being set to a random UUID that isn't even present on my system when looping back from the queue. I worked around this by setting the correct domain_uuid in the domain_variables section of the dialplan for the correct...
  9. Y

    External queue agents with call confirm

    Use Case: Volunteer roadside service dispatchers that take calls on their cell phones from a Queue. There will never be a physical extension registered to the PBX. Call Confirm is necessary so that calls from the queue don't appear "answered" by the mobile phone's voicemail. I can't figure...
  10. Y

    Help with Early Media

    If this helps at all, a SIP trace shows that no SDP info is being sent in the 183 from pre_answer. Any ideas why?
  11. Y

    Help with Early Media

    I want to use early media in probably the most typical fashion - I have a few parked DIDs that I'd like to play a message before hanging up the call with a 404. I have no problem accomplishing this with Asterisk but I can't seem to figure this out with FreeSWITCH/FusionPBX. Audio is not heard...
  12. Y

    FROM caller ID on outbound route

    I have an Asterisk system that is registering to FusionPBX to use as a proxy B2BUA for outbound calls. The Asterisk system is setting a callerID number for the outbound call, and FusionPBX is passing that on to the trunk provider as RPID. The problem is that the FROM: header in the sip packet...