Search results

  1. Adrian Fretwell

    Move FreeSWITCH DB from SQLite into PostgreSql

    Ok the files in autoload_configs are: callcenter.conf.xml db.conf.xml fifo.conf.xml switch.conf.xml voicemail.conf.xml If you are delivering configuration dynamically with DjangoPBX or similar, modifications to callcenter.conf.xml are not required. The parameters reference variables that are...
  2. Adrian Fretwell

    anyone deployed on AWS Lightsail

    Do those lists exist now? What output do you see if you issues the following commands as root? /usr/sbin/nft list set netdev filter ipv4_block_list /usr/sbin/nft list set inet filter ipv4_white_list
  3. Adrian Fretwell

    anyone deployed on AWS Lightsail

    I've had some issues with the drop fragments rule in the past, you could also try commenting that out at some point. https://github.com/djangopbx/djangopbx/issues/5
  4. Adrian Fretwell

    anyone deployed on AWS Lightsail

    @ardyhash Thankyou for looking at this. I can't see a reason why we can't use 0.0.0.0 as long as listen 127.0.0.1:8009; remains intact.
  5. Adrian Fretwell

    Move FreeSWITCH DB from SQLite into PostgreSql

    Yes, I will help if I can, I'm out most of today and tomorrow, so there may be a delay in my responding. The DjangoPBX install script will give you some help on how we do it. I have replicated the relevant sections below for you: The steps are basically: 1. Make sure you create the FreeSWITCH...
  6. Adrian Fretwell

    Outbound call issues.

    Your provider responded with a 403 forbidden. Your call was rejected for some reason. These debug logs are large and do contain a lot of information, don't become intimidated by that, just sit down and read through it slowly, and, for sure, it will tell you what is happening. I cannot comment...
  7. Adrian Fretwell

    DST a Week Early

    Hi, has anyone else in the UK seen their Yealink phones switch to BST a week early? About 600 of our phones have gone to BST a week early, I suspect it is an issue with the autoDST.xml file provided with the default firmware. I have raised a ticket with Yealink.
  8. Adrian Fretwell

    Outbound call issues.

    You could put a literal 9 on the front of the expression or make it optional with a question mark: ^9?(?:\+1|1)?([2-9]\d{2}[2-9]\d{2}\d{4})$
  9. Adrian Fretwell

    Outbound call issues.

    Your regex is not matching the 9.
  10. Adrian Fretwell

    Redis changing to a non-free licensing model.

    I have learned that Redis is changing to a non-free licensing model. Forks have already started appearing. I have a very strict policy of "open source only" for the components that make up my VoIP platform so I now need to work out if Redis remains a viable option for me, or if I need to look...
  11. Adrian Fretwell

    anyone deployed on AWS Lightsail

    I'll just give this one a nudge. Any AWS experts out there? I have been involved in this for @s2svoip, I have logged in to the machine and it is still not clear to me exactly what is going on. This debian12 deployment used by AWS appears to have iptables installed despite nft now being the...
  12. Adrian Fretwell

    Access Control List

    External port is 5080 by default, this is the port that will normally face your SIP providers. You would normally put the IP address of your SIP provider in the ACL. Freeswitch gets is 't configuration from DjangoPBX via mod_xml_curl. The diagram below may help you understand the basic...
  13. Adrian Fretwell

    Softphone recommendation

    No, I don't. I is my intention to create an add-on application to integrate Saraphone into DjangoPBX, but I have not started that yet.
  14. Adrian Fretwell

    Something is wrong with my freeswitch config/startup

    I'm sure you will work out what to do from reading the install script, but what you will need is a management command called menudefaults, you must be logged in as django-pbx user or su - djangopbx to run any management command...
  15. Adrian Fretwell

    Something is wrong with my freeswitch config/startup

    No problem, I'm more than happy to help if I can. Ok, I can see you have the default menu set for the domain. The next thing I would check is that the default menu is loaded. In Admin->Portal check what you have in Menu and Menu Items.
  16. Adrian Fretwell

    Something is wrong with my freeswitch config/startup

    Ok, a couple of points: My raspberry pi install was very simple - public IP, no NAT, no VLANS. Logging in freeswitch is set to err, so unless there are errors nothing much appears in the log. You can change this by connecting to the fs_cli and issuing a: fsctl loglevel debug. fsctl loglevel...
  17. Adrian Fretwell

    Growing pains... artificial call limits in freeswitch?

    There are some settings in freeswitch/autoload_configs/switch.conf.xml but I doubt they are the source of your issue. <!-- Minimum idle CPU before refusing calls --> <!-- <param name="min-idle-cpu" value="25"/> --> <!-- Max number of sessions to allow at any...
  18. Adrian Fretwell

    Something is wrong with my freeswitch config/startup

    I have done an install on an 8Gb Raspberry Pi 4. Choosing to build FreeSWITCH from source in the install. There were a couple of issues that I noticed: 1. Freeswitch starts for some reason before all the default data is loaded, this causes some xml handler errors in the freeswitch log. Once...
  19. Adrian Fretwell

    Speed Dials Only Route

    We had to do something similar for a customer several years ago. They wanted some extensions to only be able to dial local numbers and others to be able to dial local and national, and a select few allowed local, national and international. Some extensions were not permitted to dial outside at...
  20. Adrian Fretwell

    Error in Pizza demo Javascript program (Freeswitch)

    Try to break the problem down - split up the console_log statement, the error may then give you a better clue as to what is wrong. The error does state "undefined" so you could be looking for an out of scope variable or typo. console_log("debug", "----Hit score \n"); console_log("debug"...