Search results

  1. jsteel

    Installing Dedicated Homer SIP Capture Agent

    Has anyone been able to get decrypted tls traffic to Homer via captagent?
  2. jsteel

    email messed call from queue

    This is what is available for a cancel event. Taken from: https://freeswitch.org/confluence/display/FREESWITCH/mod_callcenter#EVENTS Event-Subclass: callcenter::info Event-Name: CUSTOM CC-Queue: support@default CC-Action: member-queue-end CC-Member-Joined-Time: 9000 CC-Member-Leaving-Time...
  3. jsteel

    Python

    I had to do the same for mod_v8 to use javascript: 1. installed it with apt-get install freeswitch-mod-v8 2. added to modules.conf.xml <load module="mod_v8"/> 3. fs_cli -x "reloadxml" 4. had to reboot box to get it to work
  4. jsteel

    Python

    Did you run "reloadxml" from the fs_cli?
  5. jsteel

    Ring time in FIFO queue

    From https://freeswitch.org/confluence/display/FREESWITCH/mod_fifo: <configuration name="fifo.conf" description="FIFO Configuration"> <fifos> <fifo name="fifo1@domain.name.com" importance="0"> <member timeout="60" simo="1"...
  6. jsteel

    change default MOH in domain

    MOH is set in the v_extensions table so I don't see a way to mange it on a per-domain basis outside of using SQL to update the extensions.
  7. jsteel

    Call Center Example

    Keep in mind that FusionPBX is built to make FreeSwitch easier to manage and admin, everything you described above could be built in FS without using Fusion at all. Fusion and FS are also both open source so support and documentation isn't always extensive but that is the "price" you have to...
  8. jsteel

    Extensions calls are hitting public context

    Glad you found it!
  9. jsteel

    How to block Anonymous inbound Calls

    What number (callerID) are you using to try and block anon calls?
  10. jsteel

    SOLVED aws fusionpbx server does not response

    Looks like a problem with ZRTP negotiation. Take a look at this link: http://lists.freeswitch.org/pipermail/freeswitch-users/2014-June/105892.html
  11. jsteel

    Extensions calls are hitting public context

    This looks like the place to start, but without acces to your dialplan it is difficult to know what the expected behavior should be: 48ca93ce-8106-4c6b-b19c-4102cea80b30 2017-09-18 19:15:26.430785 [INFO] mod_dialplan_xml.c:637 Processing 1040 <1040>->2000 in context public...
  12. jsteel

    Kamailio, FusionPBX/Freeswitch & Presence

    All you have here is a Subscribe request that has been acknowledged as being received by FS. There is no return Publish or Notify action that would indicate FS is doing anything with the Subscribe request. Is this the entire trace that you captured?
  13. jsteel

    New here trying this out currenlty using Thirdlane

    Hello! How has your experience with Thirdlane been so far? What do you like/dislike about their service?
  14. jsteel

    Moh in G729 without transcoding

    Have a look here: https://wiki.freeswitch.org/wiki/Mod_native_file You will need to make sure that mod_native_file is installed and loaded on your system. Hope this helps!
  15. jsteel

    Moh in G729 without transcoding

    G729 is a codec not an audio file format; an audio codec converts analog audio signals into digital signals for transmission. MOH normally exists as a .wav file on your system.
  16. jsteel

    Internal calls on the same phone don't work in a fresh FusionPbx installation

    "Lines" typically refers to inbound routes (DID) from a carrier.
  17. jsteel

    Internal calls on the same phone don't work in a fresh FusionPbx installation

    It sounds like you are talking about having BLF lights on your phone. For example, you are extension 100 and you want to see the status of extension 102 on your phone (i.e. a blinking light on your phone when extension 102 is ringing or a solid light when extension 102 is talking). This is not...
  18. jsteel

    Copy/Clone Outbound dialplan to new domain

    If you are familiar with SQL you could write a script to handle the dialplan actions as well as changing the name of the gateway.
  19. jsteel

    Internal calls on the same phone don't work in a fresh FusionPbx installation

    If I understand correctly, you have SIP registration for ext 100 and ext 102 on the same physical phone and you cannot dial 100-->102 or 102-->100? The phone is going to be busy when you go off-hook to dial. Why would you ever need to call from 100 to 102 or vice versa if they are registered...
  20. jsteel

    Duplicate destinations with multi tenant setup

    Destinations, specifically Inbound Routes, are DIDs that usually have a public context that are dialed from the outside world so no, you cannot have duplicates. Are you sure you are not talking about extensions? You can have duplicate extension numbers across different domains.