Search results

  1. Adrian Fretwell

    What do these registrations mean? No "(NAT)", no outbounds??

    To answer your original question. When UDP-NAT is shown in the registrations list it means that FreeSWITCH has detected that the phone is behind a NAT. This does not mean that when a registration shows UDP it is not behind a NAT, it just means that the information that the phone has provided...
  2. Adrian Fretwell

    Call Screening Audio message

    Look at call_screen (around order 495) in Dialplan->Dialplan Manager
  3. Adrian Fretwell

    Running a Cronjob for retsore....

    Check what it says in /var/log/syslog. Many implementations of cron do not spawn a shell to run the command, a shell is what would parse the pipe sign and run the command as two processes. Why not include the mail command within restore.sh?
  4. Adrian Fretwell

    Logo text

    It would appear that things have changed in the version of "master" that you have installed. This is the problem with not having a viable stable release that we all use in production. Try looking in fusionpbx/resources/classes/menu.php I would really like to help you further but I'm afraid...
  5. Adrian Fretwell

    Helppp - Fusion using ports NOT within range in docs

    I have VoIP customers that have experienced problems with Sonicwall, this is the check list I normally go through: Set UDP timeout to 350 seconds. (You may need to do this in both General and Firewall settings) Check (enable) Disable Source Port Remap. Check (enable) Enable Consistent NAT...
  6. Adrian Fretwell

    Logo text

    I can only reiterate what I have said before, instructions are available in the member documentation. If you are unable to afford the membership fee, which does help towards the continued development of FusionPBX, then it is possible to work it out for yourself by looking at the code in...
  7. Adrian Fretwell

    Call Center Functions from Purple Membership

    I inquired some time ago, there were no screenshots available and the only demonstration we could see were from training videos see the quote below. There may be more information available now, but from what we got to show our customers, we were unable to convince them that it was value for money.
  8. Adrian Fretwell

    (Solved) Dehydrated problem

    OK, I think your hook script may be short of a few functions. The hook script is called with a parameter ($1), this represents the action dehydrated wants the hook script to perform. Because you are manually updating your DNS, it is probably OK for you to just add empty placeholders for the...
  9. Adrian Fretwell

    (Solved) Dehydrated problem

    Your hook script is identical to your config file, did you post the wrong file? If you are manually updating your DNS, then I assume the hook script is not doing the work, that could be why you are getting an error.
  10. Adrian Fretwell

    (Solved) Dehydrated problem

    Do you have a configuration file at /etc/dehydrated/config ? If so, what hook scripts does it specify? What do the hook scripts look like? What version of dehydrated are you running? How are you updating your DNS zone files?
  11. Adrian Fretwell

    Session Invite Fails Net2Phone

    The round robin should not cause a problem if the SIP provider has configured their network correctly. Make sure ALL or the providers IP addresses are in your access controls to allow. If the problem persists, try ingoring the DNS round robin and just send to a single IP address. For example...
  12. Adrian Fretwell

    Periodic signals (School Bells) app

    Are you still playing with VoIP, if so, I would be interested to know which platform.
  13. Adrian Fretwell

    Outbound Roules Digits - Regex

    You are almost there, the correct syntax would be: ^(\d{3,10})$ You may find the following post helpful: https://www.pbxforums.com/threads/regex-for-one-single-outbound-route-uk.3819/
  14. Adrian Fretwell

    Opinions: What "issues/features" drive you crazy?

    I just use the valet_park dialplan (valet_park_in and valet_park_out disabled), then set up keys for the parking lots required using Yealink phones. Screenshot below:
  15. Adrian Fretwell

    Helppp - Fusion using ports NOT within range in docs

    Post a packet capture, I will look at it.
  16. Adrian Fretwell

    Helppp - Fusion using ports NOT within range in docs

    The ports in the documentation are correct for a default install. FusionPBX has no control over what ports your inbound providers sends to.
  17. Adrian Fretwell

    Reset hotDesk at Night

    I don't know the answer to this... If you go into status->registrations and check the box against a phone and then click the provision button, does that log the phone out? If it does, it is relatively easy to script a provision of several or all the phones. See the script in the thread below...
  18. Adrian Fretwell

    (Solved) Dehydrated problem

    To renew a certificate or just check if renewal is required you would normally run dehydrated with the -c (--cron) switch. On the subject of cron, did to set up any regular renewal checks? Try running dehydrated with -c and see if any more srrors are thrown, if they are then we need to start...
  19. Adrian Fretwell

    (Solved) Dehydrated problem

    Do you know why the paths would already exist if it is a new install? Did you have an existing install of dehydrated?
  20. Adrian Fretwell

    "Lenny" - The Telemarketers Nightmare

    As far as I am aware, a line beginning with * would be a syntax error in LUA. The * is an arithmetic operator for multiply. It may have been an attempt to comment out the lines, but if that were the case then a double dash should have been used i.e. -- There is a C language API available in...