Search results

  1. D

    Kamailio script to front standard FusionPBX cluster v2.0

    Is anyone using this on new Kamailio 5.3 or 5.4? also is the presence working on it? what are the cons for this setup? Thanks Dave
  2. D

    Opensips integration

    Did you ever get this working? Thanks
  3. D

    Call block using feature code

    James, for this issue: - Annoyingly can't get it to "hang up gracefully". Does an annoying "NORMAL CLEARING" beep on my Yealink. try using this when you answer the calls -- Let user know number was blocked successfully if ( file_exists(blocked_greeting) ) then...
  4. D

    Call block using feature code

    no prob, i was gonna talk about it with you and rewrite it and send to you, but got wrapped up this week. awesome. ill test it all out and let you know. i have a dam customer that is submitting a ticket for 20-30 numbers a day for us to block. thx
  5. D

    Call block using feature code

    Instead of doing " local sql = [[ SELECT caller_id_number FROM v_xml_cdr WHERE domain_uuid = :domain_uuid AND destination_number = :sip_from_user AND direction = 'inbound' ORDER BY "start_epoch" DESC LIMIT 1 ]]; " couldnt you add this to the...
  6. D

    No caller 'announce' / 'whisper' feature in FusionPBX?

    you can use a caller id prefix to prepend the queue name or company name in the caller id name its in destination, ivr, etc, etc
  7. D

    Shared Line

    we use call park to accomplish this. put the call in a park (programmed in a memory key on phone) , and pick up on the other phone.
  8. D

    Problem with outbound calls timing out at 30secs

    I did find that the issue is when the carrier doesnt send early media, which is only on random calls, the call_timeout on the extension was killing the calls after 30 seconds and pulling it back. the newer software has a line in the dialplans for "unset" "call_timeout" , however our dialplans...
  9. D

    Problem with outbound calls timing out at 30secs

    hello all, anyone have a issue when customer calls from ext to cell phone and it rings 6 times (30 secs) and freeswitch pulls the call back and goes to next route choice over and over again before the cell VM answers. then customer hears 90 seconds of ringing then busy with NO_ANSWER as the...
  10. D

    KVM cloud hosting limits

    are you doing alot of blfs keys on each phone? what are you using for your failover also? Thanks
  11. D

    new install no database indexes

    here are some indexes that we use if people want them in there they can load them: CREATE INDEX "idx_cdr_domain_uuid" ON "public"."v_xml_cdr" USING btree ("domain_uuid"); CREATE INDEX "idx_domain_name_xml_cdr" ON "public"."v_xml_cdr" USING btree ("domain_name"); CREATE INDEX...
  12. D

    KVM cloud hosting limits

    Hey all, how many registrations do you guys put on a what type systems in the cloud? thinking of going cloud based and not manage my own bare metal. will split customers up but wondering what type of resourced systems everyone is using and how heavy they load them up. anything you want to...
  13. D

    new install no database indexes

    any idea on when he will put them back in?
  14. D

    new install no database indexes

    anyone notice the install has no indexes anymore? its just the pkeys
  15. D

    unanswered transfer call return

    i know of no way to do this
  16. D

    TCP registration UDP media

    yes that is what it means. your audio will still be udp. also the way to work with the iphones that we have found is writing a lua script that sends the iphone a push notification to wake it up out of background mode then when it registers , send the call to the phone. if it doesnt register...
  17. D

    Freeswitch log viewer for notepad++

    dont know if this will fit in this forum , but wanted to share if anyone is using notepad++ i have made a language file to color code the freeswitch logs. its in operations root drive and is called "notepad++_languagefile_freeswitch_log" open notepad++ and go to settings , style and set main...
  18. D

    htek provisioning template

    Hey all, Does anyone have any htek templates at all? thanks Dave
  19. D

    Help with night mode (call flow) toggle on side car. (solved)

    is this lua script something you need to run manually to start? i mean the call_flow_monitor.lua
  20. D

    Reboot phones in domain

    Digi, here is how we do it. we have this script in crontab then you just pass in the domain name you want to reboot all the phones for: #Reboot somedomain Phones at 3am 0 3 * * * /root/scripts/pbx/cli_utils/reboot_phones.sh pbx.somedomain.com > /dev/null script is : #!/bin/bash DOMAIN=$1 for...