Recent content by neradp

  1. N

    SOLVED Callcenter configuration bug ?

    There is CC-Agent nameof agent and CC-Agent-UUID... for agent uuid i This is a definition from freeswitch... Another app looking to events from freeswitch need access to fusionpbx db to get agent name... this complicate things that are working already... So i must accept it.. and rebuild some...
  2. N

    SOLVED Callcenter configuration bug ?

    Hi, after adding queue to callcentre, or agents... the name of this queue or agent in freeswitch database is not only text but some uuid ... It is a bug ? This uuids appears in events from freeswitch as cc-agent, or cc-queue :( It is about fusion or freeswitch ? My freeswitch version is...
  3. N

    How to implement emergency call logic in fusionpbx ?

    Is it actually possible to define some workflow for emergency call in fusionpbx ? I have a trunk with limited number of simultaneous calls ... i need to establish emergency call in case the trunk limit is full, to drop some active calls with lower priority ... I saw that , there is a...
  4. N

    Jitsi provisioning ?

    Validating user from jitsi provision request again fusionpbx user source can be done in file app/provision/index.php putting this code somewhere over line 420 does the magic //jitsi user authentication if(strtolower(substr($_SERVER['HTTP_USER_AGENT'],0,5)) == "jitsi") { include...
  5. N

    Looking for Fusion Wallboard

    Im running message-pass with message-pass-freeswitch as a daemon service to monitor freeswitch just for events "CUSTOM callcenter::info" Service passing those events to some file.. Then i use logstash to do some corrections and simple math operations, and pushing it to elasticsearch.. In kibana...
  6. N

    Multidate preset ?

    No idea how to add irregular holiday in one expression ? :confused:
  7. N

    Jitsi provisioning ?

    So .. adding jitsi provision workflow to fusionpbx is simple ... 1. step Forward page requests e.g. for nginx: rewrite "^.*/provision/jitsi" /app/provision/; 2. set jitsi provision url in jitsi config to...
  8. N

    Jitsi provisioning ?

    Has anybody wrote jitsi provisioning template ? Jitsi do http request to given provisioning url ... and awaits simple .properties file.. Is there some: how to write own provisioning templates ? Or one simple question: how to work with post and get variables in provisioning template ?
  9. N

    Multidate preset ?

    hi, it is possible to do something like that: {"velky_piatok":{{"mday":"19","mon":"4","year":"2019"},{"mday":"10","mon":"4","year":"2020"},{"mday":"2","mon":"4","year":"2021"},{"mday":"15","mon":"4","year":"2022"},{"mday":"7","mon":"4","year":"2023"}}} If yes what is correct syntax ? Or i must...