Search results

  1. hfoster

    Upgrade Debian from 9 to 11

    It's either going to be FreeSwitch itself, mod_sofia or the openssl libraries those two are built against. As FreeSwitch isn't really a 'Debian' piece of software, it could just be breaking ABI changes or something. Found this, with no answer...: Anything in the journal or freeswitch logs?
  2. hfoster

    SOLVED Automatically add ip addresses connected to Fail2ban

    I should add, the new 'Event Guard' that is in the latest release of FusionPBX doesn't need this. As soon as a valid registration is seen, it's 'whitelisted' for future violations of SIP auth failures. This is a useful script for those still using Fail2Ban for things like nginx auth problems. :)...
  3. hfoster

    SOLVED Silent call

    If Azure is like AWS, you'll need to put your external IP address in the variables external_sip_ip and external_rtp_ip, otherwise your contact header will have the local address of the VM on:
  4. hfoster

    After upgrading FusionPBX (5.0.6) recording are not showing on CDR

    Does the database show the correct paths for the relevant UUID of a record? root@pbx:~# su postgres postgres@pbx:/root$ psql postgres=# \c fusionpbx fusionpbx=# select xml_cdr_uuid,record_path from v_xml_cdr;
  5. hfoster

    SOLVED Retrieve IP address from recordings

    # fs_cli -x 'show registrations'
  6. hfoster

    SOLVED Call Queue

    https://docs.fusionpbx.com/en/latest/applications/call_center.html
  7. hfoster

    Cleared Cache. Registrations dropped and could not connect via SoftPhone

    Don't know if it's the exact same issue, but I had a cascading registration failure using the SQLite coredb. So many simultaneous registrations just caused it to lock up. Switched to postgresql core which handles locks and caching a bit better and the problem disappeared. There's a script...
  8. hfoster

    outgoing cidlookup

    If you have remote phonebooks set up, it's the setting below. In the templates it's: features.remote_phonebook.enable = {$yealink_remote_phonebook_enable}
  9. hfoster

    SOLVED inbound call is not working

    SIP Trunk providers should normally give it to you.
  10. hfoster

    outgoing cidlookup

    Well, the initial_callee_id_name wasn't set in local_extension, despite being in the template XML files. Not sure what happened there. I just stuck it in at 36: initial_callee_id_name=${user_data(${dialed_extension}@${domain_name} var effective_caller_id_name)} Anyway, tried it out and it...
  11. hfoster

    outgoing cidlookup

    Oh right, the callee name. This should already be set in local_extension under initial_callee_id_name. I'll see if it shows up. Might try changing it to origination instead.
  12. hfoster

    Exporting Custom SIP Profiles to another Instance

    Yes, I think this is one thing that doesn't get cached as an XML file, mainly as it's only read at launch usually. fusionpbx=# select * from v_sip_profile_settings; You should be able to export this specific table using pgdump or COPY commands to a CSV import. Something like: pg_dump...
  13. hfoster

    Caller ID on call fwd not overriding

    Probably better setting that in the call-forward-all/busy etc dialplan entry. I reckon that would work without wrecking your outbound routes.
  14. hfoster

    Registrations dropping intermittently

    Smells like SIP ALG to me. Disable it if it is enabled. Router manufacturers haven't quite figured out rport now exists.
  15. hfoster

    outgoing cidlookup

    Here you go, we hide the Outbound Name and Emergency, as they get clipped by the SIP trunk anyway so it's pointless setting them. The only thing I can possibly think of is that your phones are in the public context by mistake? I've seen this when the providers/domains ACL is set to the network...
  16. hfoster

    Voicemail to Email stopped working

    Which ultimately pulls from switch.conf.xml: <param name="mailer-app" value="/usr/bin/php /var/www/fusionpbx/secure/v_mailto.php"/> https://github.com/fusionpbx/fusionpbx/blob/4.4/secure/v_mailto.php At line 335 is the mailer error, which could be 'error_log' for debugging I suppose.
  17. hfoster

    No ringback tone when call recording is enabled on extension

    Can't say I've noticed it myself, however I reckon it's because early_media is getting enabled but a ringback isn't being played by FreeSwitch. I would experiment with the application ring_ready in the user_record dialplan or the local_extension dialplan. That's worrying!
  18. hfoster

    outgoing cidlookup

    As long as you have an entry in the Effective Caller ID Name, it should be sent alongside the number. Displaying it may be up to the phone, by default Yealinks display Name+Number, other phones might not and go purely on the directory. If you ran an sngrep on the server, you'll probably see the...
  19. hfoster

    POLY EDGE E500 / E550 POLYCOM

    Not the replier, but: 1. Cost, firmware upgrades were a pain, a handful of the devices seemed to have rotted away from a rubbery plastic into a sticky mess. Anyone with Amstrad devices in the 80's and 90's might know what I'm talking about here. 2. RPS server allows a fresh out of the box...
  20. hfoster

    Voicemail to Email stopped working

    https://github.com/fusionpbx/fusionpbx/commit/283ed042f22e9a6df2b2f7b092ba1a5c384531d8 Dunno, commit just says 'deprecate email_logs'. Mine hasn't worked for a long time but I send everything to a special internal relay before it goes out to the internet so I don't really need the logs so I...