Recent content by jsteel

  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.