Search results

  1. Adrian Fretwell

    SOLVED CALLS DROPING INSTANTLY

    If you want help you need to tell us nore about what you are doing. Post some logs and / or a packet capture. The people on this forum are clever but not clairvoyant!
  2. Adrian Fretwell

    Inbound routes not working Fusionpbx

    Your context is correct, it needs to be public for most inbound routes. Normally you would want to set the domain field to the name of the domain that the extension/ivr/ring group is in, not Global. Looking at your transfer action, I would guess your domain should be 192.168.0.71? You should...
  3. Adrian Fretwell

    SOLVED Feature Request: Idiot Proofing

    I have to agree with @DigitalDaz it is impossible for the software to police what you are trying to do. We have seen some tightening up from Ofcom with caller ID here in the UK. There are many legitimate reasons why you may need to present a caller ID that is not one of the systems inbound...
  4. Adrian Fretwell

    SOLVED Feature Request: Idiot Proofing

    There is a relatively new permission in extensions called outbound_caller_id_select. It is not enabled by default (at least not on an upgrade), if selected it will only allow you to select a caller ID from numbers you have in your inbound destinations.
  5. Adrian Fretwell

    T54w issues

    It is difficult to speculate what you may be doing wrong, when you do not say what you are actually doing. I hope this helps: Make sure you have set and enabled the Yealink time zone in Advanced->Default Settings. Have you set up the BLFs in the keys section of your device config...
  6. Adrian Fretwell

    CDR Advanced Search - display records with >0 duration

    Fusion version 4.5.11 has a range of search criteria in Applications->Call Detail Records. You can set a minimum or maximum against the duration field:
  7. Adrian Fretwell

    Best method for Basic FusionPBX API?

    The last time I played with this, if you provided a username as well as the API key you would get a session. I have since created my own API for specific purposes, it's not something that would be useful to anyone else, but the point is that it is not difficult to do for just a few simple...
  8. Adrian Fretwell

    FSClient

    Can't help with source code, but I think you can get the old windows install here: http://files.freeswitch.org/windows/installer/x86/FSClient.zip
  9. Adrian Fretwell

    [INCOMPATIBLE_DESTINATION]

    In a default install the external SIP profile has its inbound-codec-prefs set to $${global_codec_prefs}. Your screenshot of your variables shows global_codec_prefs to be set to G7221 and G722 (PCMA is normally in there by default). This is why an inbound invite offering ony G729 and PCMA in...
  10. Adrian Fretwell

    Cannot add Call Center as destination in time condition

    I can't replicate the problem here, but it may be related to some new permissions that have been created recently, namely *_destinations, for example call_center_destinations. In Advanced->Group Manager, click on the permissions link for superadmin and check call_center_destinations is enabled:
  11. Adrian Fretwell

    [INCOMPATIBLE_DESTINATION]

    A SIP "488 - Not acceptable here" response normally indicates that there was something about the SDP body that the system didn't like. It is often caused by the two parties not being able to agree on a codec, sometimes referred to as "no codec intersection". In the log you posted I can only...
  12. Adrian Fretwell

    Rachael left me, Callie moves back in

    It appears to be hard coded as a backstop default in quite a few places: root@a2es-tester1:/usr/share/freeswitch/scripts# grep -R callie * | wc -l 35 root@a2es-tester1:/var/www/fusionpbx# grep -R callie * | wc -l 74
  13. Adrian Fretwell

    Rachael left me, Callie moves back in

    This is probably not helpful, but I'll let you decide. Going back through my notes on an older build (I think it was 4.4.2) we needed to alter the code in ivr_menu.lua because on the odd occasion the default dialect/voice was not being picked up from the session: diff ivr_menu.lua...
  14. Adrian Fretwell

    End User Documentation

    @MattS You may also find the list of feature codes helpful: https://docs.fusionpbx.com/en/latest/additional_information/feature_codes.html
  15. Adrian Fretwell

    Caller ID Lookup (cidlookup) from Contacts.

    @Andrew Byrd I think the cidlookup method you are using uses the mod_cidlookup Freeswitch module. I have no experience with that. I use the cidlookup.lua script provided by the FusionPBX distribution. This also had a small bug, have a look at...
  16. Adrian Fretwell

    What is Tenant limit Per FusionPBX Instance

    What with call recording and transcoding as well!! No, I don't think you need a challenge. :)
  17. Adrian Fretwell

    What is Tenant limit Per FusionPBX Instance

    I would consider another box long before 500 extensions if my hardware was a Raspberry Pi.:)
  18. Adrian Fretwell

    memcached and Postgres flooding at Loopback interface

    memcached is installed as part of the switch packages in the Fusion install: /usr/src/fusionpbx-install.sh/debian/resources/switch/package-master-all.sh apt-get update && apt-get install -y ntp curl memcached haveged So although the FusionPBX code no longer uses mamcached, I guess Freeswitch...
  19. Adrian Fretwell

    memcached and Postgres flooding at Loopback interface

    I thought that but a memcache process still exists: root@testbox-green:~# ps ax | grep mem 350 ? I 0:00 [kworker/3:2-memcg_kmem_cache] 623 ? Ssl 0:00 /usr/bin/memcached -m 64 -p 11211 -u memcache -l 127.0.0.1 -P /var/run/memcached/memcached.pid 3390 ? I...
  20. Adrian Fretwell

    memcached and Postgres flooding at Loopback interface

    I see a lot of TCP connections in this TIME_WAIT state on my live servers, the list looks very similar to what you have posted. This is quite normal for the way the TCP protocol works, see https://en.wikipedia.org/wiki/Transmission_Control_Protocol. A connection can stay in TIME_WAIT for up to...