Search results

  1. G

    SOLVED Push Notification.

    Home-made push notifications service for Android For the ones who can't build Linphone, this is how to build an "home-made" push notifications service, which launch an Android VoIP client, by pushing incoming calls notifications trough GCM. NOTE: It requires two paid Android app: Pushover and...
  2. G

    SOLVED Push Notification.

    I highly suggest you to edit the txt file hiding sensible data (password, ID and api key).
  3. G

    How to make dialplan rules for outbound calls only

    I tried to use "direction" as condition, but is not working. Infatc it is not showing neither in the "Type" dropdown. At the moment I set up a condition, destination_number : ^(destionation_number), in the cidlookup dialplan and it seems to work, looking up the cid only for the inbonud calls.
  4. G

    How to make dialplan rules for outbound calls only

    I am trying to properly set a rule for cidlookup for outbound calls. Currently, my cidlookup rule is this: order: 98 condition : destination_number : ^.*$ action : cidlookup : $1 action : set : effective_caller_id_name=${cidlookup(${caller_id_number})}
  5. G

    How to make dialplan rules for outbound calls only

    Could someone point me in the right direction to set a dialplan rule for outbound calls only?
  6. G

    Regular expression for caller_id_name

    @agree , thanks for replying. Before to write my post I made some test anche I checked out on regex101 If I use a "full" regex, it works: caller_id_name: 0612345678 regex: (0612345678) Usually, after a cidlookup the caller_id_name looks like this: 0612345678(X) Where X is the "spam score"...
  7. G

    Regular expression for caller_id_name

    Hi to all, I am playing with cidlookcup. I put this in dialplan (order 99): caller_id_name=${cidlookup(${caller_id_number})} It works (looking in fusionpbx contacts and from external sources), but if the caller_id_number is unknown, of course it show UNKNOWN as caller_id_name. In case of...
  8. G

    Extensions keep getting {407 Proxy Authentication REq. and Rejected by acl "domains". Falling back to Digest auth.}

    Can you try deleting in ACL/domains any LAN IPs? I have in ACL/domains only the providers IPs (I mean the public IP of the external providers), your PSTN gw should register to Fusionpbx like a normal extension. Yes (I think), the mine looks like this: Registered(UDP-NAT)(unknown) exp(2019-01-07...
  9. G

    Extensions keep getting {407 Proxy Authentication REq. and Rejected by acl "domains". Falling back to Digest auth.}

    I am new to Fusionpbx, but your problem could be related to ACL, which (I think) should be used just for providers, in order to let them to send inbound call without authentication.
  10. G

    SOLVED Push Notification.

    @Amit Iyer In order to get incoming calls notifications via pushover (or via whatever you want), I set up a "system" action in the dialplan for the inbound route (order 100), which call a bash script, located in the folder /usr/share/freeswitch/scripts/ I put this in the dialplan, just before...
  11. G

    SOLVED Push Notification.

    Have a look to this page on Github: https://github.com/AccelerateNetworks/FreeSWITCH-push/blob/master/README.md Or this: https://www.zoiper.com/en/tutorials/push-notifications I am new to Fusionpbx and I don't know if it is the right way to change the dialplan, but you can try if it works.