Search results

  1. hfoster

    SOLVED inbound call is not working

    SIP Trunk providers should normally give it to you.
  2. 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...
  3. 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.
  4. 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...
  5. 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.
  6. 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.
  7. 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...
  8. 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.
  9. 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!
  10. 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...
  11. 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...
  12. 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...
  13. hfoster

    One way audio outgoing calls

    <param name="NDLB-sendrecv-in-session" value="true"/> What about the above if you added it to the external profile in SIP Profiles?
  14. hfoster

    unable to install fusionpbx on oracle's public IP

    Variables in the web interface under Advanced. Though if you can't even access the web interface you have something more fundamentally wrong than SIP Contact IP addresses that need updating. Have you checked which IP address/port nginx is listening on? Can you see HTTP/HTTPS packets hitting...
  15. hfoster

    Voicemail to Email stopped working

    Oh, interestingly 2 weeks ago Mark removed Email logs from master. Perhaps it never worked, or it did in some special form. Anyway: https://github.com/fusionpbx/fusionpbx/blob/master/resources/classes/email.php This is the class responsible. You could probably slot a few log functions in to...
  16. hfoster

    unable to install fusionpbx on oracle's public IP

    Never used Oracle cloud, as I'm still bitter about Sun Microsystems, but isn't it like AWS where you have to open ports or attach an IP address to the instance? Is the server receiving HTTP packets? On AWS you just run the installer, open the necessary ports, update the IP address variables to...
  17. hfoster

    Disable Missed call alert on Ring Group, Possible?

    It's handset dependant, the phone is supposed to decide what is a missed call and what is not. From packet capture you should really be seeing a CANCEL with a reason of 'Call Completed Elsewhere' in the event of simultaneous dialling. That SIP message is supposed to be handled by the phone to...
  18. hfoster

    Voicemail to Email stopped working

    Think it's all done in PHPMailer. Nothing in Email Logs in the web interface?
  19. hfoster

    unable to install fusionpbx on oracle's public IP

    1. Rename the domain in Advanced -> Domains. Ideally this will be the FQDN you will ultimately be accessing the service from...however the public IP is acceptable if you don't have a domain name, and don't care about HTTPS. 2. In Variables, update the external_sip_ip and external_rtp_ip to your...
  20. hfoster

    Hot Desk Remote Login

    Yeh, you certainly can reprovision without rebooting. However there's a ton of parameters that Yealink's use that require the reboot, so it would come with a whole host of caveats. If you're happy with that, you should just be able to edit the provision/index.lua script so it doesn't send a...