Search results

  1. A

    Freeswitch log output colorized

    I wrote a simple bash function that will make the output of the freeswitch log files colored like fs_cli does. function fs_log() { if [ $# -eq 0 ] then echo "Error: Missing required argument 'file'" return 1 fi if [ ! -f $1 ] then echo "Error: No...
  2. A

    Dialplan processing for outbound routes

    Hi, where in the dialplan does the regex for outbound routes being evaluated and where in the dialplan is it getting routed to the outbound route in the cli, I see it starts off by processing the regular dialplan and then it moves to the outbound dialplan but I don't see in the dialplan where...
  3. A

    custom dialplan for newly created domains

    Hi, I would like to create all my new domains with my customize dialplans and features how can this be done? Thanks
  4. A

    deleting voicemail greetings issue

    HI, I found an interesting problem. After I delete a greeting from the GUI, the voicemail has no greeting and the voicemail goes straight to the instructions. I can see FreeSWITCH still tries to access that greeting as I see in the cli Error Opening...
  5. A

    fusionpbx restore backup to new server

    I followed the guide from https://docs.fusionpbx.com/en/latest/getting_started/restore.html and it went smoothly, but after the restore, I wasn't able to access the web GUI. I got an error message that the Postgres password is incorrect, so I manually changed the Postgres password with the...
  6. A

    block local extension calling

    Hi, I would like to block local extensions calling one to another, but still be able to get routed to local extensions through inbound calling Thanks in advanced
  7. A

    fail2ban ignoreip

    Hi, I"m having this problem for a while. I added my trunk provider ip address in jail.conf ignoreip list, and allowed it in the ACL, but it still gets banned with a fusionpbx-404 anyone with an idea what is causing this? Thanks
  8. A

    Python

    Hi I would like to write python dialplan applications how do I make it working with fusion? <action application="python" Does it work out of the box or I need to configure some stuff? Thanks
  9. A

    Caller ID when transfering calls

    Hi, I have 2 gateways one is for incoming calls and a second for outgoing calls. The problem is, the incoming provider sets the caller id without a 1 prefix for ex. 1212-123-456 will be 212-123-456. When I transfer an incoming call the outbound gateway takes the same caller id and appears wrong...
  10. A

    Sip Bypass Media

    Hi everyone, can anyone explain the difference between sip Bypass Media and sip bypass media after bridge? I understand that sip bypass media is, that the 2 endpoints rtp communicate directly without needing fusion as the user agent, but what is the difference between the 2 options?
  11. A

    change voicemail greeting for different dialplans

    I would like to know if it's possible to have different greetings for different dial-plans, for instance if the caller dials direct extension 401 it should have one greeting and if the ivr says to leave us a voicemail press 0 it should get to the same 401 mailbox with a different greeting Thank You