Search results

  1. A

    Is anyone using FS PBX?

    pbxgeek, Thanks for keeping your cool and replying in kind. Its nice to see someone standing up to support the project and countering each point with genuine explanations. Where may one learn more about the commercial offerings, namely paid support?
  2. A

    Is anyone using FS PBX?

    This is very pretty, but after scanning the github readme, watching the video and reading the comments I won't be trying it out, certainly would never even consider rolling out to production because: 1. The project is based on a fork of an older version of a currently active professionally and...
  3. A

    Help needed – will pay – installation/set up

    Full disclosure: I'm solutionsdx.com. Looks like about 3 hours, no more than 5.
  4. A

    Route call to external number

    Thanks, creators try to make things idiot proof, the world provides bigger idiots, and after some time the truth is lost, that’s why I’m a fan of Django PBX as it’s very purist, I just wish I’d known of it before the users grew accustomed to the fusion UI.
  5. A

    Route call to external number

    i guess its not very obvious/possible to modify the dialplan of an outbound destination, in order to take advantage of the ignore_early_media variable I'm going to use Adrian's suggestion of a dialplan entry and take note of it, thanks again!
  6. A

    Route call to external number

    Thanks VoipBull and Adrian for the great information and tips. I like Adrian's minimalist approach just as well as VoipBull's recommendation for an outbound destination. Knowing my poor memory and scatterbraininess an oubound destination edited to include the "ignore_early_media=ring_ready"...
  7. A

    Route call to external number

    Hello world, We have a need to route calls to a calling service after hours. Currently we've setup call forwarding on an extension and anytime we wish to route the call externally we send it to the extension with call forwarding. My question is, is there a better way? There's some dead air...
  8. A

    Did enum 164 die?

    Hello world, I’ve been reading a little on e164 but when I went to register at e164.org found a blank page there. Seems like a great concept, anyone here leveraging it?
  9. A

    Upgrading from Version 5.0 to 5.2

    1. Create a backup 2. Create a backup 3. Create a backup 4. Restore from backup to make sure you can 5. Version Upgrade — FusionPBX Docs documentation. If you're going from 5 to 5.2 then do the steps in 5 to 5.1 and the steps in 5.1 to 5.2
  10. A

    Public Service Announcement: Message service may lead to increased CPU utilization

    Hello world, Thought I'd post these here as a future note to self and hopefully anyone else who finds themselves in the situation where their CPU utilization is off the charts for no obvious reason. The last time this happened I was experimenting with the messaging service so I knew what...
  11. A

    Reconciling CDR and other changes from Backup

    it was scary in the moment but after thinking of it as a data problem it ended up being an incredibly simple 3 step process: 1) make a csv of yesterday's cdr: copy (select * from v_xml_cdr where date(start_stamp) = current_date - 1) to '/tmp/yesterdayscdr.csv' (FORMAT csv); 2) move that file...
  12. A

    Reconciling CDR and other changes from Backup

    Hello world! I just rolled back to a snapshot from two days ago and am wondering if there are any tools/documentation out there on how to merge yesterday's CDR records and anything else necessary into the currently running instance (we didn't want to risk additional downtime by waiting to...
  13. A

    Stress/Load testing

    Thanks Adrian and DigitalDaz, really appreciate your sharing your insight and experience!
  14. A

    Softphone recommendation

    Read it, didn’t change my mind. The effort required to make it work isn’t worth it because: 1) that only applies to a subset of devices 2) you’re at the mercy Google continuing to support the mechanism, but its a gamble sip predates smartphones by quite a bit, mobile battery/energy efficiency...
  15. A

    Stress/Load testing

    Thanks Adrian, both for highlighing points I hadn't considered and for sharing siege with an example.
  16. A

    letsencrypt install certificate fail

    Start over following the instructions. If it fails, start over following the instructions.
  17. A

    Stress/Load testing

    Hello world, Just wanted to ask here to see what tools the community reccommends for stress/load testing a PBX installation. I'm currently just monitoring, listening to sample calls when load is high, and scaling up vertically as I grow, but I feel that I'm overprovisioned and would like...
  18. A

    anyone deployed on AWS Lightsail

    Thanks for the tip about nftables tracing, I've never encountered/used nftables before but it looks pretty powerful. Regarding the rpi running djangopbx and freeswitch, was it just an experiment or would you actually trust one to run your own phones? I had a pipe dream some time ago about a...
  19. A

    anyone deployed on AWS Lightsail

    You're right, it looks like it was designed to run on an internet facing host but AWS instances aren't exposed to the internet directly by default. Given that you're handling security before passing the traffic you may consider if a host based firewall is even needed in your use case. I still...
  20. A

    anyone deployed on AWS Lightsail

    I had the same issue when I used a bare IP address in the whitelist, changing it to CIDR format resolved that (add a /32 to the end of the ip address) The nftables.conf is pretty restrictive (the internet is a bad neighborhood), you'd need to modify it to be more permissive according to your...