Search results

  1. Adrian Fretwell

    multi tenant SSL

    We automatically renew wildcard certificates. We manage our own DNS servers so that does make things a little easier. But basically we run Dehydrated from a cron job: root@dnsp1:~# crontab -l # min hour dayofmonth month dayofweek cmd 30 2 * * 1 cd /opt/dehydrated; ./dehydrated -c > /dev/null...
  2. Adrian Fretwell

    multi tenant SSL

    As the link suggests, the recommended approach now is to use Dehydrated. (/opt/dehydrated/dehydrated). You can obtain a wildcard certificate to use with multiple sub-domains. https://github.com/lukas2511/dehydrated
  3. Adrian Fretwell

    Ringing group message problem

    It does indeed, sound strange, but there WILL be a logical explanation for what is going on. I'm guessing you may have enabled storage_type = Base64 in your Default settings. This stores the sound files in the database, not in the filing system. If this is the case, you will see the file...
  4. Adrian Fretwell

    Ringing group message problem

    I'm not sure why you have symbolic links. Normally if you record using *732, or upload a sound file using the recordings application, the audio file will be placed in /var/lib/freeswitch/recordings/domain. There will be no symbolic links. You can move the files and reference them using...
  5. Adrian Fretwell

    Issues customizing the colours of "Description" columns

    These are the variables that should set most of what you want...
  6. Adrian Fretwell

    Ring group/Dial-plan issue

    I have tried to replicate your issue in 4.5.10, but creating a new ring group works properly every time for me. Some web browsers (depending on how they are configured) make assumptions about what you want to enter into a given field. Perhaps it is worth checking to see that the Context has...
  7. Adrian Fretwell

    SOLVED Device Profiles and Expansion modules

    Mark, Thank you for coming back so promptly. You are correct Expansion 1 to 6 do show up in the Device Edit page. But only Expansion 1 to 2 show up in the Device Profile Edit page. I believe the issue is with device_profile_edit.php
  8. Adrian Fretwell

    SOLVED Device Profiles and Expansion modules

    Thank you @JamesBorne Your suggestion will solve my immediate needs. The Fusion team say that this was addressed on version 4.5.x and whilst I agree that the latest templates now contain entries for Expansion modules 1 to 6, the Fusion GUI does not. I tested this on a fresh git pull this...
  9. Adrian Fretwell

    SOLVED Device Profiles and Expansion modules

    Hello all, I would appreciate any views on this before I go down the "hacking code myself" route. I have just started the provisioning set up for a Yealink T48s that has three expansion modules. The problem is that in the Device Profiles editor, the Keys category only has the options for...
  10. Adrian Fretwell

    changed callerid not showing only original`

    Providing you have the permissions set for the user editing/creating the ring group... You can add a CLI prefix to the inbound call in the ring group itself:
  11. Adrian Fretwell

    Gateway Not registering

    My advice to you would be, read about, and understand the SIP protocol, there are lots of resources out there on the internet. Also make sure you have an understanding of IP networking. Once you have this understanding, you will be able to set up packet capture that will allow you to see what...
  12. Adrian Fretwell

    Struggling with WebRTC after installing Lets Encrypt certificate

    @moe I may have misunderstood your original post. Were you referring to fusionpbx/fusionpbx-apps/webrtc ? I somehow don't think you were. The webrtc app I mention above is a whole different thing. This connects with mod_verto on port 8082. It is not a SIP endpoint, so I would not expect to...
  13. Adrian Fretwell

    Combining python and lua

    Nothing to do with the scripting language. Just depends on how the script is called, whether the calling process waits for the script to complete or not. Most of the time scripts are executed asynchronously so the calling process will wait to see the result (output) from the script.
  14. Adrian Fretwell

    Inbound calls stop working at random

    Basically in inbound number that does not have a valid destination so FreeSwitch responds with a "404 Not found".
  15. Adrian Fretwell

    Yealink provision for lines and buttons

    I'm pretty sure you can't do what you want with the soft keys. 1-4 represent the four keys under the LCD display and 5 onwards represent other keys on the phone like up, down, OK and Cancel etc. Here is an example on a T46s. I set key programmable key 12 to dial *9664 on line 1. Key 12 is...
  16. Adrian Fretwell

    Struggling with WebRTC after installing Lets Encrypt certificate

    Have you configured your SIP profile with a wss binding? Here is a screen shot of the relevant part of my Internal SIP profile: Also make sure you have a valid certificate file at the location pointed to by tls-cert-dir. It's a while since I set this up, but I seem to remember that the...
  17. Adrian Fretwell

    Combining python and lua

    You pose an interesting question, and I hope others will chip in with their views. My first encounter with Lua was when I started to play with FreeSwitch. I had not heard of it before then. As a C programmer, my preferred scripting languages were Perl and PHP. I never got on with Java/...
  18. Adrian Fretwell

    Voicemail to email issues

    Status->Email logs should only show failed emails. You say the test works fine, and it was all working OK two weeks ago, so you have to ask "What has changed?". Because there are no entries in the email logs, my gut feeling is that your email provider or the recipients email provider may be...
  19. Adrian Fretwell

    Inbound calls stop working at random

    The iptables rules that fail2ban inserts are lost on a reboot but you should still have the fail2ban log files at: /var/log/fail2ban.log You should have a few fail2ban logs archived by logrotated for example: /var/log/fail2ban.log.1 /var/log/fail2ban.log.2.gz /var/log/fail2ban.log.3.gz etc...
  20. Adrian Fretwell

    Inbound calls stop working at random

    Just what I was typing when I saw your message come in!