Search results

  1. M

    Call forwarding not working in call center module

    Call center bridges the call direct to the end point. If you know that then you may understand why call forward doesn't work with call center. Only way it could follow the forward is using loopback but this will give you other problems like it disregarding some of the other settings you want it...
  2. M

    VitalPBX - More serious evaluation

    @Adrian Fretwell Freedom is a good thing. I understand that starting over gives the most flexibility. Also think you need the full experience and that comes from starting from the ground up. Regardless FreeSWITCH and FusionPBX have made this much easier as a guide to learn how to get started...
  3. M

    Voicemail to Email notification not working

    Try using the upgrade documentation. Step 10 and 11. https://docs.fusionpbx.com/en/latest/advanced/version_upgrade.html?highlight=upgrade#to-5-0
  4. M

    After changing to using number-alias cannot register

    Number alias as of 31 May 2022 only built to work like this example. extension: markjcrane number_alias: 101 Notice the number_alias is a numeric in the working example. It will also work this way. extension: 101 number_alias: It will not work like this. extension: 2083334444 number_alias...
  5. M

    After changing to using number-alias cannot register

    Number alias should always be numeric.
  6. M

    After changing to using number-alias cannot register

    Number alias is currently built for one thing. To be used when the extension is non-numeric then use number alias so that it can be dialed via a phone with a number pad. Its a common assumption to use extension numeric and number alias numeric and the code I wrote doesn't work that way...
  7. M

    VitalPBX - More serious evaluation

    Response If you combine FusionPBX source and the member add-ons source code by file size you will get less than 2.3%. Currently 4 member features have been open sourced so far. More will be open sourced soon. @Adrian Fretwell Have you open sourced every bit of your code for the last 12 years...
  8. M

    Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 45056 bytes) in /var/www/fusionpbx/resources/classes/database.php on

    Maybe adjusting the wrong php.ini file. php -i | grep php.ini Then replace cli with fpm in the path and that should give you the right php.ini file.
  9. M

    Voicemail to Email notification not working

    I could solve this in a few minutes over remote desktop. It is many times harder to try and fix it over text. The email will not send with the email_queue unless it is added to the email_queue table. If its a voicemail its added to the table using lua. Email queue is working on systems that I...
  10. M

    Voicemail to Email notification not working

    This problem should be fixed please upgrade to latest code. Then try it again and report back how your testing went.
  11. M

    Voicemail to Email notification not working

    You can diagnose the problem by going to the menu -> status -> email logs and use the TEST button. Per domain SMTP settings maybe broken will take a look at it as time permits.
  12. M

    Debian install issues

    The install is actually built in components which makes it easy to re-run specific parts of the install. I defaulted the install to compile because of the package token that is now required. The install script can use it. I've been running test installs of Debian 11 about relatively often. But...
  13. M

    Email-to-Fax under Fax server

    This is a third party forum. I don't do private messages here. I talk to people that call or that put in a ticket at https://www.fusionpbx.com.
  14. M

    Give user to specific domains

    The member app is called domains with a description of domain reseller and the official one is part of the purple level member level. I'm trying to finish up version 5.0 hopefully soon.
  15. M

    Best Authentication Method? Username/Password vs IP Authentication

    I think you proved that SIP UDP is not as safe as SIP with TCP. Better protection for anti IP spoof with TCP because of its design. Lots of resources for anti IP address spoofing. https://docs.netgate.com/pfsense/en/latest/firewall/ingress-egress.html...
  16. M

    Best Authentication Method? Username/Password vs IP Authentication

    I would say IP authentication is more dependable in FreeSWITCH. Gateways with authentication false is the way to go. Sometimes FreeSWITCH gateway registration will say fail wait. Most VoIP providers use IP authentication.
  17. M

    Vulnerability Update and Fail2Ban

    You are right the ^ does mean the beginning of the line. The fail2ban filter files are located here and used as part of the install script. - https://github.com/fusionpbx/fusionpbx-install.sh/tree/master/debian/resources/fail2ban I didn't see a ^ in the beginning of any of the FreeSWITCH filters.
  18. M

    Quick Install Script Broken?

    DigiDaz: brought it to my attention which was also helpful.
  19. M

    Email failing on first attempt

    I just added the setting to latest FusionPBX if you upgrade you will see it in default settings in category: email. It makes it possible to enable TLS 1.2 which Office 365 requires.
  20. M

    Move to nftables, patches welcome?

    I have actually started it by using tools that converted iptables commands to nftables - https://github.com/fusionpbx/fusionpbx-install.sh/blob/master/debian/resources/nftables.sh Its not finished yet as I haven't had time yet to do so. However I'm interested to finish it. Will also need to...