Recent content by Adrian Fretwell

  1. Adrian Fretwell

    API

    Yes it does have an API, not had the time to add it to the documentation. The API can be accessed with a token using wget/curl etc. but there is also what is termed a browsabe API, which is pretty much self documenting and allows testing within the web browser. I will attach a few screenshots...
  2. Adrian Fretwell

    Introducing the New Business Hours Module – Goodbye Time Conditions!

    @pbxgeek When I wrote DjangoPBX, the code behind the time conditions UI was the hardest thing to get working properly. I had often thought about breaking in out to a separate app/module instead of interfacing with the dialplan directly. Your screenshots look really nice and easy to use, well...
  3. Adrian Fretwell

    Sip Bypass Media

    You can solve this issue, using the Freeswitch dptools module. I did a write up on the issue in 2022. You can find my explanation and solution here: https://www.pbxforums.com/threads/ivr-prompt-choice-not-dialing-in.5922/#post-23907
  4. Adrian Fretwell

    Simultaneous authentication per extension

    The Limit Max field controls the number of simultaneous calls. Simultaneous authentications or registrations is controlled by setting in the SIP Profile. You may find the following link useful in understanding how Freeswitch can be configured to handle this...
  5. Adrian Fretwell

    UK Online Safety Act 2023

    This will largely only be of interest to UK service providers. The Online Safety Act 2023 (https://www.legislation.gov.uk/ukpga/2023/50/contents) will come into force on the 17th March. Ofcom threatens to impose heavy corporate penalties on service providers that do not comply. The act...
  6. Adrian Fretwell

    SMS Integration

    This is not something that we have looked at in any great detail. Text messages work OK between Yealink phones on the same domain and I have a Windows communicator application that does chat, CDRs, stats, contacts and BLFs etc., that I intend to Open Source as soon as it is stable. The...
  7. Adrian Fretwell

    DjangoPBX at CamJam

    Just to let you know that I will be at the Cambridge Raspberry Jam on Saturday 1st March 2025 helping to celebrate The Raspberry Pi's 13th (unofficial) Birthday! So, if you are in the UK and want to drop in and say hello we are in The University of Cambridge Computer Laboratory, William Gates...
  8. Adrian Fretwell

    Migration from FusionPBX

    Hi, I wrote a script for my own use, but I have never made it public. As you say, it's not rocket science. I do not want to encourage people to move away from Fusion. DjangoPBX exists as an educational tool. PM me if you would like to see the script, I can send it via email.
  9. Adrian Fretwell

    New install, firewall or nginx trouble

    No problem, the documentation is not complete yet, so if there is anything you need clarification on, then please give me a shout.
  10. Adrian Fretwell

    New install, firewall or nginx trouble

    Generally speaking you should not need to modify nftables.conf. ignore_fail_addresses is for access to the web portal only, nothing to do with SIP. It is designed to hold the IP addresses associated with superusers so they cannot lock themselves out. ipv4_sip_customers and ipv4_white_list can...
  11. Adrian Fretwell

    New install, firewall or nginx trouble

    Hi Chris, I think the "protecting the web interface" mechanism can be a little over zealous at times, I think I may need to relax it a little. If you log in via ssh, then as root or sudo from django-pbx, you can run the web block list shell script: fw-delete-ipv4-web-block-list.sh <IP...
  12. Adrian Fretwell

    Gateway configured on Freeswitch and proxy as Kamailio

    I believe that kamailio, like OpenSIPS is just a SIP proxy. If you need the media stream proxying you need to engage an RTP proxy like rtpproxy or mediaproxy. Example: https://opensips.org/html/docs/modules/2.2.x/rtpproxy.html
  13. Adrian Fretwell

    It is all about help and collaboration

    When I created my own configuration utility ("GUI wrap") around FreeSWITCH, I decided that it would be helpful to the VoIP community in general if I openly shared my work. The result is DjangoPBX. DjangoPBX is absolutely non-profit. It exists for two purposes: 1. To help share knowledge of...
  14. Adrian Fretwell

    DjangoPBX get ERR_INVALID_REDIRECT

    Just fixed a bug in the installer which meant that the http to https redirect did not work properly in the Nginx site config. If you expose port 80 on an existing DjangoPBX installation you can fix this by editing /etc/nginx/sites-enabled/djangopbx and editing the "return 302" statement to read...
  15. Adrian Fretwell

    DjangoPBX get ERR_INVALID_REDIRECT

    That's great, I have a pretty good idea what we need to go and fix in the installer now. Thank you.